105 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| {% load staticfiles %}
 | |
| 
 | |
| {% block script %}
 | |
|     <script src="{% static 'seminar/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 %}{% block nadpis1b %}
 | |
|    Změna osobních údajů
 | |
|   {% endblock %}{% endblock %}
 | |
| </h1>
 | |
| <form action="{% url 'seminar_resitel_edit' %}" method="post">
 | |
|  {% csrf_token %}
 | |
|  {{form.non_field_errors}}
 | |
| 
 | |
| <hr>
 | |
| 
 | |
|      <h4>
 | |
|       Přihlašovací údaje
 | |
|      </h4>
 | |
|      <table class="form">
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.username %}
 | |
|      </table>
 | |
| 
 | |
| <hr>
 | |
| 
 | |
|     <h4>
 | |
|      Osobní údaje
 | |
|     </h4>
 | |
|       <table class="form">
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.jmeno %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.prijmeni %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.pohlavi_muz%}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.email %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.telefon %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.datum_narozeni %}
 | |
|      </table>
 | |
| 
 | |
|   <hr>
 | |
| 
 | |
|     <h4>
 | |
|       Bydliště
 | |
|     </h4>
 | |
|       <table class="form">
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.ulice %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.mesto %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.psc %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.stat %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.stat_text id="id_li_stat_text"%}
 | |
|      </table>
 | |
| 
 | |
|  <hr>
 | |
| 
 | |
|     <h4>
 | |
|      Škola
 | |
|     </h4>
 | |
|      <table class="form">
 | |
|        {% include "seminar/profil/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></tr>
 | |
|        <tr><td id="id_li_skola_vypln" colspan="2">Vyplň prosím celý název a adresu školy.</td></tr>
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.skola_nazev id="id_li_skola_nazev" %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.skola_adresa id="id_li_skola_adresa" %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.rok_maturity %}
 | |
|      </table>
 | |
| 
 | |
|  <hr>
 | |
| 
 | |
|     <h4>
 | |
|      Pošta
 | |
|     </h4>
 | |
|      <table class="form">
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.zasilat %}
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.zasilat_cislo_emailem %}
 | |
|      </table>
 | |
| 
 | |
|  <hr>
 | |
| 
 | |
|     <h4>
 | |
|      Zasílání propagačních materiálů
 | |
|     </h4>
 | |
|      <table class="form">
 | |
|        {% include "seminar/profil/prihlaska_field.html" with field=form.spam %}
 | |
|      </table>
 | |
| 
 | |
|  <hr>
 | |
| 
 | |
|     <input type="submit" value="Změnit">
 | |
| </form>
 | |
| <script>
 | |
| $("#id_stat").on("change",addrCountryChanged);
 | |
| $("#id_skola_text_button").on("click",schoolNotInList);
 | |
| </script>
 | |
| {% endblock %}
 | 
