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

Terms & Condition Page

{% if form.errors %}
Error:
    {% for field, errors in form.errors.items %} {% for error in errors %}
  • {{ field }}: {{ error }}
  • {% endfor %} {% endfor %}
{% endif %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Terms & Condition Section
{{form.media}} {% csrf_token %}
{{ form.term_texts }}
{% endblock %}