Production version March 2015
[unfold.git] / portal / templates / slice-request-view.html
1 {% extends "layout.html" %}
2 {% load i18n %}
3
4 {% block head %}
5 {{ wizard.form.media }}
6 <link rel="stylesheet" type="text/css" href="{{STATIC_URL}}/css/registration.css" />
7 {% endblock %}
8
9 {% block content %}
10
11
12
13 <div class="onelab-title well-lg">
14   <h2>Request a Slice</h2>
15 </div>
16
17 <div class='well'>
18   <form id="commentForm" class="form-horizontal" action="" method="post" role="form">{% csrf_token %}
19   <fieldset>
20     {% for field in form %}
21     <div class="form-group">
22       <label for="{{ field.html_name }}" class="col-xs-2 control-label">{{ field.label }}</label>
23       <div class="col-xs-4"> {{ field.errors }} {{ field }} </div>
24       <div class="col-xs-6"> <p class="form-hint">{{ field.help_text }}</p> </div>
25     </div>
26     {% endfor %}
27     <button class="submit btn btn-default" type="submit"><span class="glyphicon glyphicon-plus"></span> Request Slice</button>
28   </fieldset>
29   </form>
30 </div>
31
32 {% endblock %}