{% extends "base.html" %} {% block title %}Graffiti Wall Admin{% endblock %} {% block content %}

Graffiti Wall

Color Scheme
{% for key, label in schemes.items() %}
{% endfor %}
Active Show Deleted {% if not show_deleted %}
{% endif %}
{% if pagination.items %}
{% for post in pagination.items %} {% endfor %}
# User Node Line 1 Line 2 Posted Action
{{ post.id }} {{ post.display_name or post.username }} {{ post.node }} {{ post.line1 }} {{ post.line2 or '' }} {{ post.created_at.strftime('%Y-%m-%d %H:%M') }} {% if post.is_deleted %}
{% else %}
{% endif %}
{% if pagination.pages > 1 %} {% endif %} {% else %}

No wall posts found.

{% endif %} {% endblock %}