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

Home 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 %}
Slider Section
Service Section
About Section
{% csrf_token %} {{form.media}}

{{ form.image }}

{{ form.video_thumbnail }}
{{ form.subtitle }}
{{ form.title }}
{{ form.short_description }}
{{ form.tag_line }}
{{ form.ranking_number }}
{{ form.experience }}
{{ form.video_url }}
{{ form.long_description }}
Fun Fact Section
Project Section
Client Section
Pricing Section
Testimonial Section
Team Section
Blog Section
SEO
{% csrf_token %}
{{ SeoForm.meta_title }}
{{ SeoForm.meta_description }}
{% endblock %}