Uprava formatovani.
This commit is contained in:
parent
2a6dafd381
commit
49ae8af9f3
1 changed files with 131 additions and 128 deletions
|
@ -15,6 +15,7 @@
|
|||
<hr/>
|
||||
|
||||
<div id="commform-div">
|
||||
<!-- Pridat korekturu / komentar !-->
|
||||
<form action='' onsubmit='save_scroll(this)' id="commform" method="POST">
|
||||
{% csrf_token %}
|
||||
<input size="8" name="au" value="{{autor}}"/>
|
||||
|
@ -31,12 +32,19 @@
|
|||
<input type="hidden" size="3" id="commform-action" name="action"/>
|
||||
<input type="hidden" size="3" id="commform-action" name="scroll"/>
|
||||
</form>
|
||||
<!-- /Pridat korekturu / komentar !-->
|
||||
</div>
|
||||
|
||||
{% for i in img_indexes %}
|
||||
<div class='imgdiv'><img width='1021' height='1448' onclick='img_click(this,event)' id='img-{{i}}' src='/media/korektury/img/{{img_name}}-{{i}}.png'/></div><hr/>
|
||||
<div class='imgdiv'>
|
||||
<img width='1021' height='1448'
|
||||
onclick='img_click(this,event)' id='img-{{i}}'
|
||||
src='/media/korektury/img/{{img_name}}-{{i}}.png'/>
|
||||
</div>
|
||||
<hr/>
|
||||
{% endfor %}
|
||||
|
||||
<!-- Smazat vsechny komentare !-->
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
<input type='hidden' name='action' value='delall'/>
|
||||
|
@ -44,15 +52,16 @@
|
|||
<input type='hidden' name='pdf' value='{{pdf.id}}'/>
|
||||
<input type='checkbox' name='yes'/> Souhlasím se smazáním všech kometářů
|
||||
</form>
|
||||
<!-- /Smazat vsechny komentare !-->
|
||||
<hr/>
|
||||
|
||||
Děkujeme opravovatelům: {% for autor,pocet in zasluhy.items %} {{autor}}({{pocet}}) {% endfor %}<hr>
|
||||
|
||||
|
||||
<p>
|
||||
Děkujeme opravovatelům: {% for autor,pocet in zasluhy.items %} {{autor}}({{pocet}}) {% endfor %}</p>
|
||||
<hr>
|
||||
|
||||
{% for o in opravy %}
|
||||
|
||||
<div onclick='img_click(this,event)' id='op{{o.id}}-pointer' class='pointer{%if o.status = 'opraveno' %}-done{% endif %}'>
|
||||
<div onclick='img_click(this,event)'
|
||||
id='op{{o.id}}-pointer'
|
||||
class='pointer{%if o.status = 'opraveno' %}-done{% endif %}'>
|
||||
</div>
|
||||
<div name='op{{o.id}}' id='op{{o.id}}'
|
||||
class='box{%if o.status = 'opraveno' %}-done{% endif %}'
|
||||
|
@ -62,12 +71,14 @@
|
|||
<div class='corr-header'>
|
||||
<div class='author' id='op{{o.id}}-autor'>{{o.autor}}</div>
|
||||
<div class='float-right'>
|
||||
<!-- Existujici korektura !-->
|
||||
<form action='' onsubmit='save_scroll(this)' method='POST'>
|
||||
{% csrf_token %}
|
||||
<input type='hidden' name="au" value="{{autor}}"/>
|
||||
<input type='hidden' name='pdf' value='{{pdf.id}}'>
|
||||
<input type='hidden' name='id' value='{{o.id}}'>
|
||||
<input type='hidden' name='scroll'>
|
||||
|
||||
{% if o.komentare %}
|
||||
<button name='action' value='del' type='button'
|
||||
title="Korekturu nelze smazat – už ji někdo okomentoval">
|
||||
|
@ -101,24 +112,29 @@
|
|||
<button type='button' onclick='box_edit(this, "comment");' title='Komentovat'>
|
||||
<img src="/static/korektury/imgs/comment.png"/>
|
||||
</button>
|
||||
|
||||
<a href='#op{{o.id}}'><button type='button' title='Link na opravu'>
|
||||
<img src="/static/korektury/imgs/link.png"/>
|
||||
</button></a>
|
||||
<button><a href='#TODO'>
|
||||
<img title='Další oprava' src="/static/korektury/imgs/next.png"/>
|
||||
</a></button>
|
||||
|
||||
</form>
|
||||
<!-- /Existujici korektura !-->
|
||||
<button type='button' title='Link na opravu'>
|
||||
<a href='#op{{o.id}}'>
|
||||
<img src="/static/korektury/imgs/link.png"/>
|
||||
</a>
|
||||
</button>
|
||||
<button>
|
||||
<a href='#TODO'>
|
||||
<img title='Další oprava' src="/static/korektury/imgs/next.png"/>
|
||||
</a>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div id='op{{o.id}}-text'>{{o.text}}</div>
|
||||
|
||||
{% for k in o.komentare %}
|
||||
<hr>
|
||||
<div class='comment' id='k{{k.id}}'>
|
||||
<div class='corr-header'>
|
||||
<div class='author'>{{k.autor}}</div>
|
||||
<div class="float-right">
|
||||
<!-- Komentar !-->
|
||||
<form action='' onsubmit='save_scroll(this)' method='POST'>
|
||||
{% csrf_token %}
|
||||
<input type='hidden' name='pdf' value='{{pdf.id}}'>
|
||||
|
@ -129,38 +145,25 @@
|
|||
<img src="/static/korektury/imgs/delete.png"/>
|
||||
</button>
|
||||
</form>
|
||||
<!-- /Komentar !-->
|
||||
<button type='button' onclick='update_comment(this);' title='Uprav komentář'>
|
||||
<img src="/static/korektury/imgs/edit.png"/></button>
|
||||
<img src="/static/korektury/imgs/edit.png"/>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div id='kt{{k.id}}'>{{k.text}}</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{% endfor %}
|
||||
|
||||
<script>
|
||||
{% for o in opravy %}
|
||||
place_comments_one_div("img-{{o.strana}}", [["op{{o.id}}",{{o.x}},{{o.y}}]]);
|
||||
{% endfor %}
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
<form action='' onsubmit='save_scroll(this)' method='POST'>
|
||||
{% csrf_token %}
|
||||
{{ form_oprava.as_p }}
|
||||
<input type='submit' value='Odeslat'/>
|
||||
</form>
|
||||
{% if scroll %}
|
||||
<script>
|
||||
window.scrollTo(0,{{scroll}});
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue