forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/templates/versions.html

25 lines
905 B
HTML
Raw Normal View History

2024-03-07 22:52:55 +00:00
{% extends "default.html" %}
2024-03-08 01:56:24 +00:00
{% block pagetitle %}Versions of /{% if obj.fullname.startswith('p_') %}post{% else %}comment{% endif %}/{{obj.id}}{% endblock %}
2024-03-07 22:52:55 +00:00
{% block content %}
2024-03-10 07:13:35 +00:00
<h2 class="my-4 py-md-2 d-none d-md-block">Versions of <a href="{{obj.permalink}}">/{% if obj.fullname.startswith('p_') %}post{% else %}comment{% endif %}/{{obj.id}}</a></h2>
<h4 class="my-4 py-md-2 d-md-none">Versions of <a href="{{obj.permalink}}">/{% if obj.fullname.startswith('p_') %}post{% else %}comment{% endif %}/{{obj.id}}</a></h4>
2024-05-17 00:27:39 +00:00
<hr class="chunky-hr">
2024-03-07 22:52:55 +00:00
2024-05-17 00:22:42 +00:00
{% if obj.fullname.startswith('p_') %}
<h3>{{obj.title_html | safe}}</h3>
{% endif %}
2024-03-08 01:50:41 +00:00
2024-05-17 00:22:42 +00:00
{{obj.body_html | safe}}
{% for edit in obj.edits %}
2024-05-17 00:27:39 +00:00
<hr class="chunky-hr">
2024-05-17 00:22:42 +00:00
{% if obj.fullname.startswith('p_') %}
<h3>{{edit.old_title_html | safe}}</h3>
{% endif %}
{{edit.old_body_html | safe}}
{% endfor %}
2024-05-17 00:27:39 +00:00
<hr class="chunky-hr">
2024-03-07 22:52:55 +00:00
{% endblock %}