diff options
-rw-r--r-- | app/templates/packages/view.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/templates/packages/view.html b/app/templates/packages/view.html index 3a83995..ab48c6e 100644 --- a/app/templates/packages/view.html +++ b/app/templates/packages/view.html @@ -46,6 +46,12 @@ {% if package.author == current_user or package.checkPerm(current_user, "APPROVE_NEW") %} {% if review_thread %} + <h2>🔒 {{ review_thread.title }}</h2> + <p><i> + This thread is only visible to the package owner and users of + Editor rank or above. + </i></p> + {% from "macros/threads.html" import render_thread %} {{ render_thread(review_thread, current_user) }} {% else %} |