Statistics
| Branch: | Tag: | Revision:

root / templates / edumanage / contacts_edit.html @ 25028c1d

History | View | Annotate | Download (2.9 kB)

1 c2b3014a Leonidas Poulopoulos
{% extends "edumanage/welcome.html"%}
2 25028c1d Leonidas Poulopoulos
{% load i18n %}
3 c2b3014a Leonidas Poulopoulos
{% block crumbs %}
4 25028c1d Leonidas Poulopoulos
        <li><a href="{% url manage %}">{% trans "Home" %}</a><span class="divider">/</span></li>
5 25028c1d Leonidas Poulopoulos
        <li><a href="{% url contacts %}">{% trans "Contacts" %}</a><span class="divider">/</span></li>
6 25028c1d Leonidas Poulopoulos
        <li class="active">{% if edit %}{{form.instance.firstname}} {{form.instance.lastname}} ({% trans "edit" %}){% else %}{% trans "Add Contact" %}{% endif %}</li>
7 c2b3014a Leonidas Poulopoulos
{% endblock %}
8 c2b3014a Leonidas Poulopoulos
{% block extrahead %}
9 c2b3014a Leonidas Poulopoulos
<script type="text/javascript" src="/static/js/jquery.min.js"></script>
10 c2b3014a Leonidas Poulopoulos
 <script type="text/javascript"
11 c2b3014a Leonidas Poulopoulos
      src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
12 c2b3014a Leonidas Poulopoulos
      
13 c2b3014a Leonidas Poulopoulos
14 c2b3014a Leonidas Poulopoulos
15 c2b3014a Leonidas Poulopoulos
16 c2b3014a Leonidas Poulopoulos
{% endblock %}
17 c2b3014a Leonidas Poulopoulos
                        
18 c2b3014a Leonidas Poulopoulos
{% block homeactive %}{% endblock %}
19 c2b3014a Leonidas Poulopoulos
{% block contactsactive %}class="active"{% endblock %}
20 25028c1d Leonidas Poulopoulos
{% block subcontent %} <h4>{% if edit %}{{form.instance.firstname}} {{form.instance.lastname}} ({% trans "edit" %}){% else %}{% trans "Add Contact" %}{% endif %}</h4>
21 c2b3014a Leonidas Poulopoulos
<hr>
22 c2b3014a Leonidas Poulopoulos
<form method="POST" class="form-horizontal">
23 c2b3014a Leonidas Poulopoulos
        {% csrf_token %}
24 c2b3014a Leonidas Poulopoulos
        {% if form.non_field_errors %}
25 c2b3014a Leonidas Poulopoulos
        <p class="error">
26 c2b3014a Leonidas Poulopoulos
                {{ form.non_field_errors}}
27 c2b3014a Leonidas Poulopoulos
        </p>
28 c2b3014a Leonidas Poulopoulos
        {% endif %}
29 c2b3014a Leonidas Poulopoulos
        <div style="display: none">
30 c2b3014a Leonidas Poulopoulos
                {{form.instid}}
31 c2b3014a Leonidas Poulopoulos
        </div>
32 c2b3014a Leonidas Poulopoulos
        <div class="control-group {% if form.firstname.errors %} error {% endif %}">
33 25028c1d Leonidas Poulopoulos
                <label class="control-label" for="id_firstname"><b>{% trans "First name" %}</b></label>
34 c2b3014a Leonidas Poulopoulos
                <div class="controls">
35 c2b3014a Leonidas Poulopoulos
                        {{ form.firstname }}
36 c2b3014a Leonidas Poulopoulos
                        {% if form.firstname.errors %} <span class="help-inline"> {{ form.firstname.errors|join:", " }} </span>
37 c2b3014a Leonidas Poulopoulos
                        {% endif %} <span class="help-block"> {{ form.firstname.help_text }}</span>
38 c2b3014a Leonidas Poulopoulos
                </div>
39 c2b3014a Leonidas Poulopoulos
                </div>
40 c2b3014a Leonidas Poulopoulos
                <div class="control-group {% if form.lastname.errors %} error {% endif %}">
41 25028c1d Leonidas Poulopoulos
                <label class="control-label" for="id_lastname"><b>{% trans "Last name" %}</b></label>
42 c2b3014a Leonidas Poulopoulos
                <div class="controls">
43 c2b3014a Leonidas Poulopoulos
                        {{ form.lastname }}
44 c2b3014a Leonidas Poulopoulos
                        {% if form.lastname.errors %} <span class="help-inline"> {{ form.lastname.errors|join:", " }} </span>
45 c2b3014a Leonidas Poulopoulos
                        {% endif %} <span class="help-block"> {{ form.lastname.help_text }}</span>
46 c2b3014a Leonidas Poulopoulos
                </div>
47 c2b3014a Leonidas Poulopoulos
                </div>
48 c2b3014a Leonidas Poulopoulos
                <div class="control-group {% if form.email.errors %} error {% endif %}">
49 25028c1d Leonidas Poulopoulos
                <label class="control-label" for="id_email"><b>{% trans "Email" %}</b></label>
50 c2b3014a Leonidas Poulopoulos
                <div class="controls">
51 c2b3014a Leonidas Poulopoulos
                        {{ form.email }}
52 c2b3014a Leonidas Poulopoulos
                        {% if form.email.errors %} <span class="help-inline"> {{ form.email.errors|join:", " }} </span>
53 c2b3014a Leonidas Poulopoulos
                        {% endif %} <span class="help-block"> {{ form.email.help_text }}</span>
54 c2b3014a Leonidas Poulopoulos
                </div>
55 c2b3014a Leonidas Poulopoulos
                </div>
56 c2b3014a Leonidas Poulopoulos
                <div class="control-group {% if form.phone.errors %} error {% endif %}">
57 25028c1d Leonidas Poulopoulos
                <label class="control-label" for="id_phone"><b>{% trans "Phone" %}</b></label>
58 c2b3014a Leonidas Poulopoulos
                <div class="controls">
59 c2b3014a Leonidas Poulopoulos
                        {{ form.phone }}
60 c2b3014a Leonidas Poulopoulos
                        {% if form.phone.errors %} <span class="help-inline"> {{ form.phone.errors|join:", " }} </span>
61 c2b3014a Leonidas Poulopoulos
                        {% endif %} <span class="help-block"> {{ form.phone.help_text }}</span>
62 c2b3014a Leonidas Poulopoulos
                </div>
63 c2b3014a Leonidas Poulopoulos
                </div>
64 c2b3014a Leonidas Poulopoulos
        <div class="control-group">
65 c2b3014a Leonidas Poulopoulos
                <div class="controls">
66 c2b3014a Leonidas Poulopoulos
                        <button type="submit" id="applybutton" value="Apply" class="btn btn-large btn-primary"/>
67 25028c1d Leonidas Poulopoulos
                        {% trans "Apply" %}</button>
68 c2b3014a Leonidas Poulopoulos
                </div>
69 c2b3014a Leonidas Poulopoulos
        </div>
70 c2b3014a Leonidas Poulopoulos
</form>
71 c2b3014a Leonidas Poulopoulos
{% endblock %}
72 c2b3014a Leonidas Poulopoulos