{% extends "base.html" %} {% load static %} {% block title %}Project Submission | ArchDune{% endblock %} {% block css %} {% endblock css %} {% block content %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}

For large file, submit via email: {{site_config.email}}

  • {{ form.project_title.errors }}
  • {{ form.project_year.errors }}
  • {{ form.name.errors }}
  • {{ form.email.errors }}
  • {{ form.phone.errors }}
  • {{ form.country.errors }}
  • {{ form.firm_company_university.errors }}
  • {{ form.studio.errors }}
  • {{ form.field_of_study.errors }}
  • {{ form.facebook_url.errors }}
  • {% if form.project_brief.value %}

    File selected previously, please reselect

    {% endif %} {{ form.project_brief.errors }}
  • {{ form.message.errors }}
  • Project brief should not exceed 2000 words. All photos must be properly captioned and credited where appropriate. Remember to keep your project brief concise and focused, while providing enough information to give a clear understanding of the project's purpose and requirements. Attach plan, Elevation, Section, 3d view, illustration & form generation according to desired format. Article should be properly referred and supplemented by author's biography.
  • {% if form.project_images.value %}

    Images selected previously, please reselect

    {% endif %}
Stay in Touch
{% for social_media in social_media %} {% if social_media.platform == "facebook" %} {% endif %} {% if social_media.platform == "linkedin" %}
{{social_media.followers|upper}}
FANS
{% endif %} {% if social_media.platform == "youtube" %}
{{social_media.followers|upper}}
SUBSCRIBERS
{% endif %} {% if social_media.platform == "pinterest" %}
{{social_media.followers|upper}}
FOLLOWERS
{% endif %} {% endfor %}
{% endblock content%}