layout changes
[myslice.git] / portal / templates / contact.html
1 {% extends "layout-unfold1.html" %}
2
3 {% block head %}
4 {{ wizard.form.media }}
5 {% endblock %}
6
7 {% block unfold_main %}
8
9
10 <div class="wrapper" id="ticket-request">
11 <h1><img src="{{ STATIC_URL }}img/icon_support_small.png" alt="Open a Ticket" /> OneLab Support</h1>
12
13 <p>
14         If you have any diffculties using the portal, please contact us by filling this form below.<br />
15         You can also <a href="mailto:support@myslice.info">e-mail</a> us directly or consult to our <a href="http://trac.myslice.info/" >documentation</a>
16 </p>
17
18 <div>
19   <form class="cmxform form-horizontal" id="commentForm" action="#" method="post" role="form">{% csrf_token %}
20   <fieldset>
21     {% for field in form %}
22     <div class="form-group">
23       <label for="{{ field.html_name }}" class="col-xs-3 control-label">{{ field.label }}</label>
24       <div class="col-xs-6"> {{ field.errors }} {{ field }} <p class="form-hint">{{ field.help_text }}</p> </div>
25     </div>
26     {% endfor %}
27     <div class="col-xs-5">
28     </div>
29     <button class="submit btn btn-default col-xs-2" type="submit">Create Ticket</button>
30   </fieldset>
31   </form>
32 </div>
33 {% endblock %}
34