{% extends "admin/base.html" %} {% block title %}Dashboard - StarPunk Admin{% endblock %} {% block admin_content %}

All Notes

+ New Note
{% if notes %} {% for note in notes %} {% endfor %}
Content Created Status Actions
{{ note.content[:100] }}{% if note.content|length > 100 %}...{% endif %}
{{ note.slug }}
{{ note.created_at.strftime('%b %d, %Y') }} {% if note.published %} Published {% else %} Draft {% endif %} {% if note.published %} View {% endif %} Edit
{% else %}

No notes yet. Create your first note!

Create First Note
{% endif %}
{% endblock %}