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

About Page

{% if form.errors %}
Error:
    {% for field, errors in form.errors.items %} {% for error in errors %}
  • {{ field }}: {{ error }}
  • {% endfor %} {% endfor %}
{% endif %} {% 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 %}
First Section
{{form.media}} {% csrf_token %}

{{ form.image1 }}

{{ form.image2 }}

{{ form.image3 }}
{{ form.subtitle }}
{{ form.title }}
{{ form.years_of_experience }}
{{ form.feature1 }}
{{ form.feature2 }}
{{ form.feature3 }}
{{ form.description }}
About Us Section
Fun Fact Section
Testimonial Section
Team Section
Blog Section
SEO
{% csrf_token %}
{{ SeoForm.meta_title }}
{{ SeoForm.meta_description }}
{% endblock %}