1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{% extends "base.html" %} {% block title %}List of log files{% endblock %} {% block body %} <table> <tr> <th>group id</th> <th>path</th> </tr> {% for file in files %} <tr> <td>{{ file.group_id }}</td> <td>{{ file.path }}</td> </tr> {% endfor %} </table> {% endblock %}