47 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "seminar/archiv/base.html" %}
 | |
| 
 | |
| {% load comments %}
 | |
| 
 | |
| {% block content %}
 | |
| <div>
 | |
|   {% if problem.cislo_zadani %}
 | |
|     <h2>
 | |
|       {% block nadpis1 %}
 | |
|         {{ problem.nazev_typu }} {{ problem.kod_v_rocniku }}: {{ problem.nazev }}
 | |
|         {% if problem.body %}
 | |
|           ({{ problem.body }}b)
 | |
|         {% endif %}
 | |
|       {% endblock %}
 | |
|     </h2>
 | |
| 
 | |
|     <p>Zadáno v čísle <a href='{{ problem.cislo_zadani.verejne_url }}'>{{ problem.cislo_zadani.kod }}</a>.
 | |
|     {% if problem.cislo_reseni %}
 | |
|       <p>Řešeno v čísle <a href='{{ problem.cislo_reseni.verejne_url }}'>{{ problem.cislo_reseni.kod }}</a>.
 | |
|     {% endif %}
 | |
|   {% else %}
 | |
|     <h2>Problém {{ problem.nazev }}</h2>
 | |
|   {% endif %}
 | |
| 
 | |
| 
 | |
|   <h3>Zadání</h3>
 | |
|   {{ problem.text_zadani |safe }}
 | |
| 
 | |
|   <h3>Řešení</h3>
 | |
|   {{ problem.text_reseni |safe }}
 | |
| 
 | |
|   {% if True %}
 | |
|   <div class='mam-org-only'>
 | |
| 
 | |
|     <h3>Text - org</h3>
 | |
|     {{ problem.text_org |safe }}
 | |
| 
 | |
|     <h3>Diskuse - org</h3>
 | |
|     {% render_comment_list for object %}
 | |
|     {% render_comment_form for object %}
 | |
| 
 | |
|   </div>
 | |
|   {% endif %}
 | |
| 
 | |
| </div>
 | |
| {% endblock content %}
 | |
| 
 | 
