login as: {{ admin.username }}
<ul>
{% for post in posts %}
<li>
<a href="/admin/article/{{ post.id }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>