zkrášlování deadlinů na stránce zadání
This commit is contained in:
parent
3793efdab7
commit
52892b456a
2 changed files with 33 additions and 18 deletions
|
@ -326,11 +326,7 @@ div.novinky_name {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.zadani_azad_termin {
|
|
||||||
text-align: center;
|
|
||||||
font-size: large;
|
|
||||||
font-weight: bold
|
|
||||||
}
|
|
||||||
|
|
||||||
/**********
|
/**********
|
||||||
* Footer
|
* Footer
|
||||||
|
@ -912,7 +908,25 @@ div.cislo_odkazy ul {
|
||||||
}
|
}
|
||||||
|
|
||||||
#azad_obrazek {
|
#azad_obrazek {
|
||||||
margin-top: 15px;
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.zadani_termin {
|
||||||
|
text-align: center;
|
||||||
|
font-size: large;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 420px) {
|
||||||
|
div.zadani_termin {
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
div.zadani_termin .datum {
|
||||||
|
color:#e84e10;
|
||||||
|
margin:0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -12,25 +12,26 @@
|
||||||
{# Zobrazovani neverejnych zadani jen organizatorum #}
|
{# Zobrazovani neverejnych zadani jen organizatorum #}
|
||||||
{% if user.je_org or verejne %}
|
{% if user.je_org or verejne %}
|
||||||
{% if user.je_org and not verejne %}<div class="mam-org-only">{% endif %}
|
{% if user.je_org and not verejne %}<div class="mam-org-only">{% endif %}
|
||||||
|
|
||||||
|
<div class="zadani_termin">
|
||||||
|
Termíny pro odeslání řešení {{ac.poradi}}. série:<br>
|
||||||
|
|
||||||
{% if ac.datum_deadline_soustredeni %}
|
{% if ac.datum_deadline_soustredeni %}
|
||||||
<div class="zadani_azad_termin">
|
<span class="datum">{{ac.datum_deadline_soustredeni}}</span> pro účast na soustředění<br>
|
||||||
Termín odeslání {{ac.poradi}}. série pro účast na soustředění:
|
|
||||||
{{ac.datum_deadline_soustredeni}}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if ac.datum_preddeadline %}
|
{% if ac.datum_preddeadline %}
|
||||||
<div class="zadani_azad_termin">
|
<span class="datum">{{ac.datum_preddeadline}}</span> pro otištění v dalším čísle<br>
|
||||||
Termín odeslání {{ac.poradi}}. série pro otištění v dalším čísle:
|
|
||||||
{{ac.datum_preddeadline}}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if ac.datum_deadline %}
|
{% if ac.datum_deadline %}
|
||||||
<div class="zadani_azad_termin">
|
<span class="datum">{{ac.datum_deadline}}</span> definitivní deadline<br>
|
||||||
Termín odeslání {{ac.poradi}}. série: {{ac.datum_deadline}}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
{% if ac.titulka_nahled and ac.pdf %}
|
{% if ac.titulka_nahled and ac.pdf %}
|
||||||
<a href="{{ac.pdf.url}}"><img id="azad_obrazek" src="{{ac.titulka_nahled.url}}" alt=Titulní strana {{ac.poradi}}. čísla></img></a>
|
<a href="{{ac.pdf.url}}"><img id="azad_obrazek" src="{{ac.titulka_nahled.url}}" alt=Titulní strana {{ac.poradi}}. čísla></img></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue