index.html 583 B

123456789101112131415161718
  1. {% extends "../theme.html" %}
  2. {% block content %}
  3. <link href="{{static_url('pc/css/logs.css')}}" rel="stylesheet">
  4. <div class="pannel">
  5. <h2 class="nm">系统通知({{data['page']['totalNum']}})</h2>
  6. {% if data['list'] %}
  7. <ul class="logs">
  8. {% for v in data['list'] %}
  9. <li><h3>{{v['type']}}{% if v['status'] == False %}<em></em>{% end %}</h3><p>{{v['content']}}</p><p class="time">{{v['cdates']}}</p></li>
  10. {% end %}
  11. </ul>
  12. {% else %}
  13. 暂无通知
  14. {% end %}
  15. </div>
  16. {%set url = '/msg' %}
  17. {%include '../inc/page.html'%}
  18. {% end %}