{% extends 'base.html' %} {% load i18n static %} {% block title %}{% trans "Contact Us" %} | masarX{% endblock %} {% block content %} {% trans "Contact Us" %} {% trans "We'd love to hear from you. Please fill out the form below." %} {% csrf_token %} {% if form.non_field_errors %} {% for error in form.non_field_errors %} {{ error }} {% endfor %} {% endif %} {{ form.name.label }} {{ form.name }} {% if form.name.errors %} {{ form.name.errors.0 }} {% endif %} {{ form.email.label }} {{ form.email }} {% if form.email.errors %} {{ form.email.errors.0 }} {% endif %} {{ form.subject.label }} {{ form.subject }} {% if form.subject.errors %} {{ form.subject.errors.0 }} {% endif %} {{ form.message.label }} {{ form.message }} {% if form.message.errors %} {{ form.message.errors.0 }} {% endif %} {% trans "Send Message" %} {% if platform_profile %} {% trans "Or reach us at" %} {% if platform_profile.phone_number %} {{ platform_profile.phone_number }} {% endif %} {% if platform_profile.email %} {{ platform_profile.email }} {% endif %} {% if platform_profile.address %} {{ platform_profile.address }} {% endif %} {% endif %} {% endblock %}
{% trans "We'd love to hear from you. Please fill out the form below." %}