diff options
Diffstat (limited to 'jimbrella/templates/admin/logs.html')
-rw-r--r-- | jimbrella/templates/admin/logs.html | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/jimbrella/templates/admin/logs.html b/jimbrella/templates/admin/logs.html deleted file mode 100644 index f4f57c0..0000000 --- a/jimbrella/templates/admin/logs.html +++ /dev/null @@ -1,34 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <title>JI Umbrella</title> - <link rel="stylesheet" href="/static/jimbrella.css" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - </head> - <body> - <h1>JI Umbrella Logs</h1> - <div id="container"> - {% include "admin/tabs.html" %} - <div class="data-table-container"> - <table class="data"> - <thead> - <tr> - <th>Date</th> - <th>Event</th> - <th>Note</th> - </tr> - </thead> - <tbody> - {% for log in logs|reverse %} - <tr class="{{ log.event|lower }}"> - <td>{{ log.date_str }}</td> - <td>{{ log.description }}</td> - <td>{{ log.note }}</td> - </tr> - {% endfor %} - </tbody> - </table> - </div> - </div> - </body> -</html> |