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

Project Page

{% if SeoForm.errors %}
Error:
    {% for field, errors in SeoForm.errors.items %} {% for error in errors %}
  • {{ field }}: {{ error }}
  • {% endfor %} {% endfor %}
{% endif %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Project Section
SEO
{% csrf_token %}
{{ SeoForm.meta_title }}
{{ SeoForm.meta_description }}
{% endblock %}