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.
28 lines
685 B
28 lines
685 B
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block script %}
|
|
<!--script type="text/javascript" src="{% static 'admin/js/vendor/jquery/jquery.js' %}"></script!-->
|
|
{{form.media}}
|
|
<script src="{% static 'odevzdavatko/dynamic_formsets.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>
|
|
{% block nadpis1a %}
|
|
Vložit řešení
|
|
{% endblock %}
|
|
</h1>
|
|
<form enctype="multipart/form-data" action="{% url 'seminar_vloz_reseni' %}" method="post" onsubmit="return zkontroluj_prilohy();">
|
|
{% csrf_token %}
|
|
{{form.as_p}}
|
|
|
|
<hr>
|
|
|
|
{% include "odevzdavatko/prilohy.html" %}
|
|
|
|
<hr>
|
|
<h4>Vložit řešení</h4>
|
|
<input type="submit" value="Vložit">
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|