list.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% extends "base.html" %}
  2. {% load static %}
  3. {% block title %}
  4. 通知
  5. {% endblock title %}
  6. {% block content %}
  7. <div class="container">
  8. <div class="row mt-4 ml-4">
  9. <a href="{% url 'notice:update' %}" class="btn btn-warning" role="button">清空所有通知</a>
  10. </div>
  11. <!--未读通知列表-->
  12. <div class="row mt-2 ml-4">
  13. <ul class="list-group">
  14. {% for notice in notices %}
  15. <li class="list-group-item" id="notice_link">
  16. <a href="{% url 'notice:update' %}?article_id={{ notice.target.id }}&notice_id={{ notice.id }}"
  17. target="_blank">
  18. <span style="color: #5897fb;">
  19. {{ notice.actor }}
  20. </span>
  21. 在<span style="color: #01a252;">{{ notice.target }}</span>{{ notice.verb }}。
  22. </a>
  23. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{ notice.timestamp|date:"Y/m/d H:i" }}
  24. </li>
  25. {% endfor %}
  26. </ul>
  27. </div>
  28. </div>
  29. <style>
  30. #notice_link a:link {
  31. color: black;
  32. }
  33. #notice_link a:visited {
  34. color: lightgray;
  35. }
  36. </style>
  37. {% endblock content %}