blob: 005d36a6818fe5120d0fe9ad320745afeb8c074a [file] [log] [blame]
Rushabh Mehtad6164132012-12-27 18:40:42 +05301{% extends "html/page.html" %}
2
3{% block javascript %}
4 {% include "js/contact.js" %}
5{% endblock %}
6
7{% block title %}
8Contact Us
9{% endblock %}
10
11{% block content %}
12<div class="layout-wrapper">
Rushabh Mehta84adf1b2012-12-28 10:30:46 +053013 <div class="layout-main row">
Rushabh Mehtad6164132012-12-27 18:40:42 +053014 <div class="web-form span5 pull-left">
15 {{ obj.doc.introduction or "<h3>Contact Us</h3>"}}
Rushabh Mehta84adf1b2012-12-28 10:30:46 +053016 <div class="row">
17 <div class="span4">
Rushabh Mehtad6164132012-12-27 18:40:42 +053018 <p id="contact-alert" class="alert"
19 style="display: none;">&nbsp;</p>
20 </div>
Rushabh Mehta84adf1b2012-12-28 10:30:46 +053021 </div>
Rushabh Mehtad6164132012-12-27 18:40:42 +053022 <div class="clearfix"></div>
23 <p><select class="span4" name="subject">
24 {% for option in obj.doc.query_options %}
25 <option value="{{ option }}">{{ option }}</option>
26 {% endfor %}
27 </select></p>
28 <p><input class="span4" name="email" type="text" placeholder="Your Email Address" /></p>
29 <p><textarea class="span4" rows="10" name="message"></textarea></p>
30 <p><button class="btn btn-primary btn-send">Send</button></p>
31 </div>
32 {% if obj.doc.address %}
Rushabh Mehta84adf1b2012-12-28 10:30:46 +053033 <div class="pull-right span3 alert" itemscope itemtype="http://schema.org/PostalAddress">
34 <h4><i class="icon-map-marker"></i> {{ obj.address.address_title }}</h4>
Rushabh Mehtad6164132012-12-27 18:40:42 +053035 {% if obj.address.address_line1 %}
Rushabh Mehta84adf1b2012-12-28 10:30:46 +053036 <span itemprop="streetAddress">{{ obj.address.address_line1 }}</span><br>
Rushabh Mehtad6164132012-12-27 18:40:42 +053037 {% endif %}
38 {% if obj.address.address_line2 %}
Rushabh Mehta84adf1b2012-12-28 10:30:46 +053039 <span itemprop="streetAddress">{{ obj.address.address_line2 }}</span><br>
Rushabh Mehtad6164132012-12-27 18:40:42 +053040 {% endif %}
41 {% if obj.address.city %}
Rushabh Mehta84adf1b2012-12-28 10:30:46 +053042 <span itemprop="addressLocality">{{ obj.address.city }}</span><br>
Rushabh Mehtad6164132012-12-27 18:40:42 +053043 {% endif %}
44 {% if obj.address.state %}
Rushabh Mehta84adf1b2012-12-28 10:30:46 +053045 <span itemprop="addressRegion">{{ obj.address.state }}</span><br>
Rushabh Mehtad6164132012-12-27 18:40:42 +053046 {% endif %}
47 {% if obj.address.pincode %}
Rushabh Mehta84adf1b2012-12-28 10:30:46 +053048 <span itemprop="postalCode">{{ obj.address.pincode }}</span><br>
Rushabh Mehtad6164132012-12-27 18:40:42 +053049 {% endif %}
50 {% if obj.address.country %}
Rushabh Mehta84adf1b2012-12-28 10:30:46 +053051 <span itemprop="addressCountry">{{ obj.address.country }}</span><br>
Rushabh Mehtad6164132012-12-27 18:40:42 +053052 {% endif %}
53 </div>
54 {% endif %}
55 <div class="clearfix"></div>
56 </div>
57</div>
58{% endblock %}