{% extends "layout.html" %} {% block title %}Administration{% endblock %} {% block body %}

Administration for {{ appname }}

{% if pastes %} {##} {% for p in pastes %} {# #} {# magic string is from utf8icons.com #} {% endfor %} {% endif %} {% endblock %}
idprivatetitleuserpublishedexpiresparentchildrenActions
{{ p.id }}{% if p.private %}✓{% endif %}{{ p.title }} {% if p.user %}{{ p.user }}{% endif%} {{ p.pub_date.strftime('%FT%TZ') }} {% if p.exp_date != p.pub_date %}{{ p.exp_date.strftime('%FT%TZ') }}{% endif %} {% if p.parent[0] %}{{ p.parent[1] }}{% endif %} {% if p.children %}{% for c in p.children %}{% if not loop.first %},{% endif %} {{ c[1] }}{% endfor %}{% endif %}