blob: 72e0f279a95faf74ef2ba085f324c9dd233c1005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "base.html" %}
{% block title %}
{{ entry.title }}
{% endblock %}
{% block content %}
{% if entry.url %}
<a class="float-right btn btn-primary" href="{{ entry.url }}">View</a>
{% endif %}
<h1>{{ entry.title }}</h1>
<p class="text-muted mb-4">
{{ _("Caused by %(author)s.", author=entry.causer.display_name) }}
</p>
<pre><code>{{ entry.description }}</code></pre>
{% endblock %}
|