123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- {% extends 'management/_common/base.html' %}
- {% load page_tag %}
- {% block content %}
- <form style="padding: 0;" action="/management/files" method="get">
- <div style="padding: 0" class="ui input">
- <input name="search_name" type="text" style="margin-right: 5px" placeholder="Name">
- <button type="submit" class="ui button primary"><i class="search icon"></i>搜索</button>
- <a href="/management/files" type="reset" class="ui button secondary"><i class="refresh icon"></i>重置</a>
- </div>
- </form>
- <table style="padding: 0" class="ui celled table">
- <thead>
- <tr>
- <th>ID</th>
- <th>预览</th>
- <th>源文件名称</th>
- <th>路径</th>
- <th>后缀</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- {% for file in files %}
- <tr>
- <td>{{ file.id }}</td>
- <td>
- {% if file.suffix == 'jpg' or file.suffix == 'png' or file.suffix == 'gif' %}
- <img width="50" height="50" src="{{ file.file_net_path }}">
- {% else %}
- {% endif %}
- </td>
- <td>{{ file.file_net_path }}</td>
- <td>{{ file.origin_name }}</td>
- <td>{{ file.suffix }}</td>
- <td><a onclick="deleteConfirm({{ file.id }})" href="#" class="button" style="color: red">删除</a>
- </td>
- </tr>
- {% endfor %}
- </tbody>
- <tfoot>
- <tr>
- <th colspan="7">
- <div class="ui right floated pagination menu">
- {% if files.number > 1 %}
- <a href="?page={{ files.number|add:-1 }}" class="icon item">
- <i class="left chevron icon"></i>
- </a>
- {% else %}
- <a class="icon item">
- <i class="left chevron icon"></i>
- </a>
- {% endif %}
- {% for page in files.paginator.page_range %}
- {% circle_page files.number page %}
- {% endfor %}
- {% if files.number < files.paginator.num_pages %}
- <a href="?page={{ files.number | add:1 }}" class="icon item">
- <i class="right chevron icon"></i>
- </a>
- {% else %}
- <a class="icon item">
- <i class="right chevron icon"></i>
- </a>
- {% endif %}
- </div>
- </th>
- </tr>
- </tfoot>
- </table>
- <div class="ui mini test modal">
- <div class="header">
- 警告
- </div>
- <div class="content">
- <p>确认删除文件?</p>
- </div>
- <div class="actions">
- <div class="ui negative button">
- 取消
- </div>
- <a id="deleteBtn" href="" class="ui positive right labeled icon button">
- 确认
- <i class="checkmark icon"></i>
- </a>
- </div>
- </div>
- {% endblock %}
- {% block js %}
- <script>
- function deleteConfirm(id) {
- $('.mini.modal')
- .modal('show')
- $("#deleteBtn").attr('href', '/management/files/delete?id=' + id)
- }
- </script>
- {% endblock %}
|