73 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ prilohy.management_form }}
 | 
						|
 | 
						|
<h4>Soubory s řešením</h4>
 | 
						|
 | 
						|
<p style="text-align: justify">Maximální součet velikostí příloh je cca 49 MB. Pokud je to možné a dává to smysl, pošli nám prosím své řešení ve formátu PDF, ostatní formáty nemusíme umět otevřít.</p>
 | 
						|
<p style="text-align: justify">Pokud svůj soubor rozumně pojmenuješ, urychlíš opravování a předejdeš tomu, že si nějakého tvého řešení nevšimneme. Například z <code>img_250921_101205.pdf</code> nepoznáme, kterou úlohu jsi odevzdal, zato <code>uloha_3.pdf</code> nebo <code>tema_1.pdf</code>, to už je něco jiného. Případně můžeš využít i poznámku řešitele.</p>
 | 
						|
 | 
						|
<div id="form_set">
 | 
						|
{% for form in prilohy.forms %}
 | 
						|
	<div class="attachment">
 | 
						|
	{{ form.non_field_errors }}
 | 
						|
	{# {{ form.errors }} FIXME: možná tohle chceme zobrazovat? #}
 | 
						|
        <table class='form' id="reseni">
 | 
						|
          <tr>
 | 
						|
          {% for field in form.visible_fields %}
 | 
						|
 | 
						|
              <td>
 | 
						|
                <label class="field-label{% if field.field.required %} field-required{% endif %}" for="{{ field.id_for_label }}">
 | 
						|
                  {{ field.label }}:
 | 
						|
                </label>
 | 
						|
 | 
						|
              </td>
 | 
						|
              <td {% if field.help_text %} class="field-with-comment"{% endif %}>
 | 
						|
                {{ field }}
 | 
						|
                  <span class="field-comment">{{ field.help_text|safe }}</span>
 | 
						|
              </td>
 | 
						|
 | 
						|
            <td><span class="field-error">{{ field.errors }}</span></td>
 | 
						|
 | 
						|
          {% endfor %}
 | 
						|
 | 
						|
        <td>
 | 
						|
          <input type="button" value="Odebrat přílohu" class="remove_attachment" id="{{form.prefix}}-jsremove">
 | 
						|
        </td>
 | 
						|
	</tr>
 | 
						|
  </table>
 | 
						|
	</div>
 | 
						|
{% endfor %}
 | 
						|
</div>
 | 
						|
 | 
						|
<input type="button" value="Přidat přílohu" id="add_attachment">
 | 
						|
 | 
						|
<div id="empty_form" style="display:none">
 | 
						|
	<div class="attachment">
 | 
						|
 | 
						|
        <table class='form no_error' id="reseni">
 | 
						|
          <tr>
 | 
						|
          {% for field in prilohy.empty_form.visible_fields %}
 | 
						|
 | 
						|
              <td>
 | 
						|
                <label class="field-label{% if field.field.required %} field-required{% endif %}" for="{{ field.id_for_label }}">
 | 
						|
                  {{ field.label }}:
 | 
						|
                </label>
 | 
						|
 | 
						|
              </td>
 | 
						|
              <td {% if field.help_text %} class="field-with-comment"{% endif %}>
 | 
						|
                {{ field }}
 | 
						|
                <span class="field-comment">{{ field.help_text|safe }}</span>
 | 
						|
              </td>
 | 
						|
 | 
						|
            <td><span class="field-error">{{ field.errors }}</span></td>
 | 
						|
 | 
						|
          {% endfor %}
 | 
						|
 | 
						|
        <td>
 | 
						|
 | 
						|
 | 
						|
	<input type="button" value="Odebrat přílohu" class="remove_attachment" id="id_prilohy-__prefix__-jsremove">
 | 
						|
  </td>
 | 
						|
</tr>
 | 
						|
</table>
 | 
						|
	</div>
 | 
						|
</div>
 |