]> git.lizzy.rs Git - cheatdb.git/blob - app/templates/admin/audit_view.html
Add ability for moderators to delete comments
[cheatdb.git] / app / templates / admin / audit_view.html
1 {% extends "base.html" %}
2
3 {% block title %}
4 {{ entry.title }}
5 {% endblock %}
6
7 {% block content %}
8         {% if entry.url %}
9                 <a class="float-right btn btn-primary" href="{{ entry.url }}">View</a>
10         {% endif %}
11
12         <h1>{{ entry.title }}</h1>
13         <p class="text-muted mb-4">
14                 {{ _("Caused by %(author)s.", author=entry.causer.display_name) }}
15         </p>
16
17         <pre><code>{{ entry.description }}</code></pre>
18
19 {% endblock %}