{% extends "layout.html" %} {% block title %}Administration{% endblock %} {% block body %}
id | #}private | title | user | published | expires | parent | children | Actions |
---|---|---|---|---|---|---|---|---|
{{ p.id }} | #}{% if p.private %}✓{% endif %} | {# magic string is from utf8icons.com #}{{ 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 %} | {% endfor %} {% endif %} {% endblock %} |