Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
4.3 KiB
132 lines
4.3 KiB
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block script %}
|
|
<script src="{% static 'personalni/prihlaska.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
<!--
|
|
|
|
# pro přidání políčka do formuláře je potřeba
|
|
# - mít v modelu tu položku, kterou chci upravovat
|
|
# - přidat do views (prihlaskaView, resitelEditView)
|
|
# - přidat do forms
|
|
# - includovat do html
|
|
|
|
-->
|
|
|
|
{% block content %}
|
|
<h1>
|
|
{% block nadpis1a %}
|
|
Přihláška do semináře
|
|
{% endblock %}
|
|
</h1>
|
|
|
|
<p><b>Tučně</b> popsaná pole jsou povinná.</p>
|
|
|
|
<form action="{% url 'seminar_prihlaska' %}" method="post">
|
|
{% csrf_token %}
|
|
{{form.non_field_errors}}
|
|
|
|
|
|
<hr>
|
|
<h4>
|
|
Přihlašovací údaje
|
|
</h4>
|
|
<table class="form">
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.username %}
|
|
{# {% include "personalni/udaje/prihlaska_field.html" with field=form.password %}#}
|
|
{# {% include "personalni/udaje/prihlaska_field.html" with field=form.password_check %}#}
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<h4>
|
|
Osobní údaje
|
|
</h4>
|
|
<table class="form">
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.jmeno %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.prijmeni %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.pohlavi_muz%}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.email %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.telefon %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.datum_narozeni %}
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<h4>
|
|
Bydliště
|
|
</h4>
|
|
<table class="form">
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.ulice %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.mesto %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.psc %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.stat %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.stat_text id="id_li_stat_text"%}
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<h4>
|
|
Škola
|
|
</h4>
|
|
<table class="form">
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.skola %}
|
|
<tr><td colspan="2" ><button id="id_skola_text_button" type="button">Škola není v seznamu</button></td><td>(Prosíme, zkuste ji najít, téměř jistě ji v seznamu máme. Školy se dobře hledají podle příjmení lidí v jejich názvu, podle ulice, případně název ulice <i>mezera</i> město, atd. Nezadávejte slova, která se často zkracují – gymnázium, střední odborná škola, křestní jména…)</td></tr>
|
|
<tr><td id="id_li_skola_vypln" colspan="2">Vyplň prosím celý název a adresu školy.</td></tr>
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.skola_nazev id="id_li_skola_nazev" %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.skola_adresa id="id_li_skola_adresa" %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.rok_maturity %}
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<h4>
|
|
Pošta
|
|
</h4>
|
|
<table class="form">
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.zasilat %}
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.zasilat_cislo_emailem %}
|
|
</table>
|
|
<hr>
|
|
|
|
<h4>
|
|
GDPR
|
|
</h4>
|
|
{% include "personalni/udaje/gdpr.html" %}
|
|
<table class="form">
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.gdpr %}
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<h4>
|
|
Zasílání propagačních materiálů
|
|
</h4>
|
|
<table class="form">
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.spam %}
|
|
</table>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<h4>
|
|
Ostatní
|
|
</h4>
|
|
<table class="form">
|
|
{% include "personalni/udaje/prihlaska_field.html" with field=form.jak_se_dozvedeli %}
|
|
</table>
|
|
|
|
|
|
|
|
<input type="submit" value="Odeslat">
|
|
</form>
|
|
<script>
|
|
$("#id_stat").on("change",addrCountryChanged);
|
|
$("#id_skola_text_button").on("click",schoolNotInList);
|
|
</script>
|
|
|
|
|
|
{% endblock %}
|
|
|