crablog/static/admin/index.tera

10 lines
151 B
Plaintext
Raw Normal View History

login as: {{ admin.username }}
2018-10-22 09:45:39 +04:00
<ul>
{% for post in posts %}
2018-10-22 09:45:39 +04:00
<li>
<a href="/admin/article/{{ post.id }}">{{ post.title }}</a>
</li>
{% endfor %}
2018-10-22 09:45:39 +04:00
</ul>