mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
27 lines
569 B
HTML
27 lines
569 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.display_name) }}
|
|
</p>
|
|
{% else %}
|
|
<p class="text-muted mb-4">
|
|
{{ _("Caused by a deleted user.", author=entry.causer.display_name) }}
|
|
</p>
|
|
{% endif %}
|
|
|
|
<pre><code>{{ entry.description }}</code></pre>
|
|
|
|
{% endblock %}
|