2020-07-11 04:29:33 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ entry.title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% if entry.url %}
|
2023-08-22 20:58:43 +02:00
|
|
|
<a class="float-end btn btn-primary" href="{{ entry.url }}">View</a>
|
2020-07-11 04:29:33 +02:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<h1>{{ entry.title }}</h1>
|
2020-12-09 20:33:31 +01:00
|
|
|
|
|
|
|
{% if entry.causer %}
|
|
|
|
<p class="text-muted mb-4">
|
2021-02-26 00:25:33 +01:00
|
|
|
{{ _("Caused by %(author)s.", author=entry.causer.username) }}
|
2020-12-09 20:33:31 +01:00
|
|
|
</p>
|
|
|
|
{% else %}
|
|
|
|
<p class="text-muted mb-4">
|
2021-02-26 00:25:33 +01:00
|
|
|
{{ _("Caused by a deleted user.") }}
|
2020-12-09 20:33:31 +01:00
|
|
|
</p>
|
|
|
|
{% endif %}
|
2020-07-11 04:29:33 +02:00
|
|
|
|
|
|
|
<pre><code>{{ entry.description }}</code></pre>
|
|
|
|
|
|
|
|
{% endblock %}
|