~daker/loco-team-portal/fix.venues

« back to all changes in this revision

Viewing changes to loco_directory/templates/meetings/team_meeting_new.html

  • Committer: Tarmac
  • Author(s): Adnane Belmadiaf
  • Date: 2013-02-18 21:46:11 UTC
  • mfrom: (611.1.2 fix.forms)
  • Revision ID: tarmac@geekpad-20130218214611-wb9dt5w7ouuamjlu
[r=] Fixed the forms style

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
{% block page_name %}{% trans "New Team Meeting" %}{% endblock %}
5
5
 
6
6
{% block extrahead %}{{ block.super }}
7
 
{{form.media}}
8
 
{% endblock %}
9
 
 
10
 
{% block extrafooter %}
11
 
<script type="text/javascript"><!--
12
 
$(document).ready(function(){
13
 
    $('span[rel*=help]').colorTip({color:'orange'});
14
 
});
15
 
--></script>
 
7
{{ form.media }}
16
8
{% endblock %}
17
9
 
18
10
{% block content %}
19
11
<div class="row">
20
12
    <section class="span-9">
21
 
    <form action="." method="post">{% csrf_token %}
22
 
        <fieldset>
23
 
            <h3>{% trans "Add new Team Meeting for " %}{{ team_object.name}}</h3>
24
 
                {{ form.as_template }}
25
 
        </fieldset>
26
 
            {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}           
27
 
            <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
28
 
    </form>
 
13
        <div class="box_content">
 
14
            <div class="pagelet">
 
15
                <form action="." method="post" class="form">{% csrf_token %}
 
16
                    <h2>{% trans "Add new Team Meeting for " %}{{ team_object.name}}</h2>
 
17
                    {{ form.as_template }}
 
18
                    {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
 
19
                    <input type="submit" name="submit" value="{% trans "Submit" %}" class="btn" />
 
20
                </form>
 
21
            </div>
 
22
        </div>
29
23
    </section>
30
24
</div>
31
 
 
32
25
{% endblock %}