5597c8c72910a5bd97da41b30da64d2714f3d871
[edumed.git] / curriculum / templates / curriculum / competence_list.html
1 {% extends "base.html" %}
2 {% load chunks %}
3
4 {% block title %}Katalog kompetencji medialnych i informacyjnych{% endblock %}
5
6 {% block body %}
7 <h1>Katalog kompetencji medialnych i informacyjnych</h1>
8
9 {% chunk 'katalog_kompetencji' %}
10
11 <div class="curriculum-form">
12 <h2><a>Przeglądaj kompetencje <span>(rozwiń)</span></a></h2>
13 <form>
14
15 <h3>Poziom edukacyjny:</h3>
16 {% if errors.level %}<p class="error">{{ errors.level }}</p>{% endif %}
17 {% for lev_group, levels in levels.items %}
18     <strong>{{ lev_group }}</strong>
19     <ul class="curriculum-levels">
20     {% for lev in levels %}
21     <li><label><input type="radio" name="level" value="{{ lev.slug }}"
22         {% if lev == level %}checked="checked"{% endif %} />
23         {{ lev }}</label></li>
24     {% endfor %}
25     </ul>
26 {% endfor %}
27
28 <h3>Kategorie kompetencji:</h3>
29 {% if errors.competences %}<p class="error">{{ errors.competences }}</p>{% endif %}
30 <ul class="curriculum-sections">
31 {% for section in sections %}
32     <li class="curriculum-section">
33     <label><input type="checkbox" class="s" name="s" value="{{ section.pk }}"
34         {% if section.pk in sect_ids %}checked="checked"{% endif %} /> {{ section }}</label>
35         <a class="curriculum-section-toggler">(rozwiń)</a>
36     <ul class="competences">
37     {% for competence in section.competence_set.all %}
38         <li class="competence"><label><input class="c" type="checkbox" name="c" value="{{ competence.pk }}"
39             {% if competence.pk in comp_ids %}checked="checked"{% endif %} />
40             {{ competence }}</label></li>
41     {% endfor %}
42     </ul>
43     </li>
44 {% endfor %}
45 </ul>
46 <button>Pokaż</button>
47 </form>
48 </div>
49
50 {% if chosen_competences %}
51
52 <h2>Wybrane kompetencje – {{ level }}</h2>
53
54 {% for section, competences in chosen_competences.items %}
55     <h3>{{ section }}</h3>
56     {% for competence in competences %}
57         <h4>{{ competence }}</h4>
58         {{ competence.for_level_.description|linebreaksbr }}
59     {% endfor %}
60 {% endfor %}
61
62 {% endif %}
63
64
65 {% if request.GET.d %}
66 <script type="text/javascript">
67     var curriculum_hide_form = true;
68 </script>
69 {% endif %}
70 {% endblock %}