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