post_alerts.html 785 B

123456789101112131415161718192021222324
  1. {% load i18n %}
  2. {% if post.is_moderated %}
  3. <div class="alert alert-info">
  4. <span class="fa fa-question-circle fa-fw fa-lg"></span>
  5. {% if post.id == thread.first_post_id %}
  6. {% trans "This thread won't be visible to other users until its approved by moderator." %}
  7. {% else %}
  8. {% trans "This post won't be visible to other users until its approved by moderator." %}
  9. {% endif %}
  10. </div>
  11. {% endif %}
  12. {% if post.has_open_reports and thread.acl.can_see_reports %}
  13. <div class="alert alert-danger">
  14. <span class="fa fa-exclamation-triangle fa-fw fa-lg"></span>
  15. {% trans "This post has open reports." %}
  16. </div>
  17. {% endif %}
  18. {% if post.is_hidden and post.acl.can_see_hidden %}
  19. <div class="alert alert-default">
  20. {% include "misago/thread/hidden_message.html" %}
  21. </div>
  22. {% endif %}