123456789101112131415161718 |
- {% extends "../theme.html" %}
- {% block content %}
- <link href="{{static_url('pc/css/logs.css')}}" rel="stylesheet">
- <div class="pannel">
- <h2 class="nm">系统通知({{data['page']['totalNum']}})</h2>
- {% if data['list'] %}
- <ul class="logs">
- {% for v in data['list'] %}
- <li><h3>{{v['type']}}{% if v['status'] == False %}<em></em>{% end %}</h3><p>{{v['content']}}</p><p class="time">{{v['cdates']}}</p></li>
- {% end %}
- </ul>
- {% else %}
- 暂无通知
- {% end %}
- </div>
- {%set url = '/msg' %}
- {%include '../inc/page.html'%}
- {% end %}
|