|
@ -99,8 +99,9 @@ |
|
|
onmouseout='box_onmouseout(this,{% if o.status = 'opraveno' %}"done"{% elif o.status = 'neni_chyba' %}"wontfix"{%else%}""{% endif %})'> |
|
|
onmouseout='box_onmouseout(this,{% if o.status = 'opraveno' %}"done"{% elif o.status = 'neni_chyba' %}"wontfix"{%else%}""{% endif %})'> |
|
|
|
|
|
|
|
|
<div class='corr-header'> |
|
|
<div class='corr-header'> |
|
|
<div class='author' id='op{{o.id}}-autor'>{{o.autor}}</div> |
|
|
<span class='author' id='op{{o.id}}-autor'>{{o.autor}}</span> |
|
|
<div class='float-right'> |
|
|
<span class='float-right'> |
|
|
|
|
|
<span id='op{{o.id}}-buttons'> |
|
|
<!-- Existujici korektura !--> |
|
|
<!-- Existujici korektura !--> |
|
|
<form action='' onsubmit='save_scroll(this)' method='POST'> |
|
|
<form action='' onsubmit='save_scroll(this)' method='POST'> |
|
|
{% csrf_token %} |
|
|
{% csrf_token %} |
|
@ -147,11 +148,12 @@ |
|
|
<button type='button' onclick='box_edit(this, "comment");' title='Komentovat'> |
|
|
<button type='button' onclick='box_edit(this, "comment");' title='Komentovat'> |
|
|
<img src="{% static "korektury/imgs/comment.png" %}"/> |
|
|
<img src="{% static "korektury/imgs/comment.png" %}"/> |
|
|
</button> |
|
|
</button> |
|
|
|
|
|
</span> |
|
|
<button type='button' onclick='toggle_visibility(this);' title='Skrýt/Zobrazit'> |
|
|
<button type='button' onclick='toggle_visibility(this);' title='Skrýt/Zobrazit'> |
|
|
<img src="{% static "korektury/imgs/hide.png" %}"/> |
|
|
<img src="{% static "korektury/imgs/hide.png" %}"/> |
|
|
</button> |
|
|
</button> |
|
|
|
|
|
|
|
|
</div> |
|
|
</span> |
|
|
</div> |
|
|
</div> |
|
|
<div class='corr-body' id='op{{o.id}}-body'> |
|
|
<div class='corr-body' id='op{{o.id}}-body'> |
|
|
<div id='op{{o.id}}-text'>{{o.text}}</div> |
|
|
<div id='op{{o.id}}-text'>{{o.text}}</div> |
|
@ -159,17 +161,17 @@ |
|
|
{% for k in o.komentare %} |
|
|
{% for k in o.komentare %} |
|
|
<hr> |
|
|
<hr> |
|
|
<div class='comment' id='k{{k.id}}'> |
|
|
<div class='comment' id='k{{k.id}}'> |
|
|
<div class='corr-header'> |
|
|
<span class='corr-header'> |
|
|
<div class='author'>{{k.autor}}</div> |
|
|
<div class='author'>{{k.autor}}</div> |
|
|
<div class="float-right"> |
|
|
<span class="float-right"> |
|
|
<!-- Komentar !--> |
|
|
<!-- Komentar !--> |
|
|
<form action='' onsubmit='save_scroll(this)' method='POST'> |
|
|
<form action='' onsubmit='save_scroll(this)' method='POST'> |
|
|
{% csrf_token %} |
|
|
{% csrf_token %} |
|
|
<input type='hidden' name='pdf' value='{{pdf.id}}'> |
|
|
<input type='hidden' name='pdf' value='{{pdf.id}}'> |
|
|
<input type='hidden' name='id' value='{{k.id}}'> |
|
|
<input type='hidden' name='id' value='{{k.id}}'> |
|
|
<input type='hidden' name='scroll'> |
|
|
<input type='hidden' name='scroll'> |
|
|
<button type='submit' name='action' value='del-comment' title='Smaž komentář' |
|
|
<button type='submit' name='action' value='del-comment' title='Smaž komentář' |
|
|
onclick='return confirm("Opravdu smazat komentář?")'> |
|
|
onclick='return confirm("Opravdu smazat komentář?")'> |
|
|
<img src="{% static "korektury/imgs/delete.png" %}"/> |
|
|
<img src="{% static "korektury/imgs/delete.png" %}"/> |
|
|
</button> |
|
|
</button> |
|
|
</form> |
|
|
</form> |
|
@ -178,7 +180,7 @@ |
|
|
<img src="{% static "korektury/imgs/edit.png"%}"/> |
|
|
<img src="{% static "korektury/imgs/edit.png"%}"/> |
|
|
</button> |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</span> |
|
|
<div id='kt{{k.id}}'>{{k.text}}</div> |
|
|
<div id='kt{{k.id}}'>{{k.text}}</div> |
|
|
</div> |
|
|
</div> |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|