|
@ -132,23 +132,23 @@ |
|
|
<img src="{% static "korektury/imgs/delete.png"%}"/> |
|
|
<img src="{% static "korektury/imgs/delete.png"%}"/> |
|
|
</button> |
|
|
</button> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if o.status != 'k_oprave' %} |
|
|
{% if o.status != o.STATUS.K_OPRAVE %} |
|
|
<button type='submit' name='action' value='undone' title='Označ jako neopravené'> |
|
|
<button type='submit' name='action' value='{{ o.STATUS.K_OPRAVE }}' title='Označ jako neopravené'> |
|
|
<img src="{% static "korektury/imgs/undo.png"%}"/> |
|
|
<img src="{% static "korektury/imgs/undo.png"%}"/> |
|
|
</button> |
|
|
</button> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if o.status != 'opraveno' %} |
|
|
{% if o.status != o.STATUS.OPRAVENO %} |
|
|
<button type='submit' name='action' value='done' title='Označ jako opravené'> |
|
|
<button type='submit' name='action' value='{{ o.STATUS.OPRAVENO }}' title='Označ jako opravené'> |
|
|
<img src="{% static "korektury/imgs/check.png"%}"/> |
|
|
<img src="{% static "korektury/imgs/check.png"%}"/> |
|
|
</button> |
|
|
</button> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if o.status != 'neni_chyba' %} |
|
|
{% if o.status != o.STATUS.NENI_CHYBA %} |
|
|
<button type='submit' name='action' value='wontfix' title='Označ, že se nebude měnit'> |
|
|
<button type='submit' name='action' value='{{ o.STATUS.NENI_CHYBA }}' title='Označ, že se nebude měnit'> |
|
|
<img src="{% static "korektury/imgs/cross.png" %}"/> |
|
|
<img src="{% static "korektury/imgs/cross.png" %}"/> |
|
|
</button> |
|
|
</button> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if o.status != 'k_zaneseni' %} |
|
|
{% if o.status != o.STATUS.K_ZANESENI %} |
|
|
<button type='submit' name='action' value='ready' title='Označ jako připraveno k zanesení'> |
|
|
<button type='submit' name='action' value='{{ o.STATUS.K_ZANESENI }}' title='Označ jako připraveno k zanesení'> |
|
|
<img src="{% static "korektury/imgs/tex.png" %}"/> |
|
|
<img src="{% static "korektury/imgs/tex.png" %}"/> |
|
|
</button> |
|
|
</button> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|