Ĉi tiu deponejo arĥiviĝis je 2024-01-28. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
2019-02-23 01:15:14 -06:00
|
|
|
<article>
|
|
|
|
<h1 class="title">{{ post_title }}</h1>
|
|
|
|
<h2 class="author">By
|
|
|
|
<a href="{{ depth }}{{ user_prefix_name}}{{ user[post_author]['name'] }}">
|
2019-02-20 08:04:55 -06:00
|
|
|
{{ user[post_author]['full_name'] }}
|
|
|
|
</a>
|
|
|
|
</h2>
|
|
|
|
|
2019-02-23 01:15:14 -06:00
|
|
|
<h3 class="date">{{ post_date }} - {{ post_id }}</h3>
|
|
|
|
|
|
|
|
{% set logged_class = user[logged_id]['class'] %}
|
|
|
|
{% if (post_author == logged_id) or (logged_class == "archmage")
|
|
|
|
or (logged_class == "wizard") %}
|
|
|
|
<p>
|
|
|
|
<a class="button" href="edit/?id={{ post_id }}">Edit post</a>
|
|
|
|
<a class="button" href="oust/?id={{ post_id }}">Delete post</a>
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<!-- ====================================================================== -->
|
|
|
|
|
|
|
|
<div class="text">{{ post_text }}</div>
|
|
|
|
</article>
|