mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
dea5a52c86
Fixes #269
27 lines
531 B
HTML
27 lines
531 B
HTML
{% 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>
|
|
|
|
{% if entry.causer %}
|
|
<p class="text-muted mb-4">
|
|
{{ _("Caused by %(author)s.", author=entry.causer.username) }}
|
|
</p>
|
|
{% else %}
|
|
<p class="text-muted mb-4">
|
|
{{ _("Caused by a deleted user.") }}
|
|
</p>
|
|
{% endif %}
|
|
|
|
<pre><code>{{ entry.description }}</code></pre>
|
|
|
|
{% endblock %}
|