~mhall119/loco-team-portal/site-search

« back to all changes in this revision

Viewing changes to loco_directory/templates/events/team_event_update.html

  • Committer: Michael Hall
  • Date: 2010-10-21 15:45:21 UTC
  • mfrom: (305.3.3 fix.647478)
  • Revision ID: mhall119@gmail.com-20101021154521-9wjjsz20tyod0fhk
New colorful tooltip popups, merge from Adnane Belmadiaf

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
{{form.media}}
8
8
{% endblock %}
9
9
 
 
10
{% block extrafooter %}
 
11
<script type="text/javascript"><!--
 
12
$(document).ready(function(){
 
13
    $('span[rel*=help]').colorTip({color:'orange'});
 
14
});
 
15
--></script>
 
16
{% endblock %}
 
17
 
10
18
{% block sub_nav %}
11
19
{% endblock %}
12
20
 
14
22
<article class="main-content">
15
23
<h2>{% trans "Update Team Event" %}</h2>
16
24
<form action="." method="post">
17
 
        <table>
18
 
                {{ form.as_table }}
19
 
        </table>
20
 
        <p><input type="submit" value="Submit" /></p>
 
25
        <div class="form" style="width:auto;"> 
 
26
            {{ form.as_template }}
 
27
            <div> 
 
28
                {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}               
 
29
                <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" /> 
 
30
            </div>
 
31
        </div>
21
32
</form>
22
33
</article>
23
34