{% extends 'dashboard/base.html' %} {% load static %} {% load customtag %} {% block title %}{{ title }} - {{ seo_settings.meta_title }}{% endblock title %} {% block content %}

{{ title }} of {{profile.name}}

{% csrf_token %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if form.errors %}
    {% for field in form %} {% if field.errors %}
  • {{ field.label }}: {{ field.errors }}
  • {% endif %} {% endfor %}
{% endif %}
{% endblock %}