{% 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 }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
{{ form.subject }} {% if form.subject.errors %}
{{ form.subject.errors.0 }}
{% endif %}
{{ form.message }} {% if form.message.errors %}
{{ form.message.errors.0 }}
{% endif %}
{% 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 %}