diff --git a/korektury/static/korektury/imgs/hide.png b/korektury/static/korektury/imgs/hide.png index bcaeec04..e58ddb03 100644 Binary files a/korektury/static/korektury/imgs/hide.png and b/korektury/static/korektury/imgs/hide.png differ diff --git a/korektury/static/korektury/opraf.js b/korektury/static/korektury/opraf.js index 61eb5ce9..08b6149e 100644 --- a/korektury/static/korektury/opraf.js +++ b/korektury/static/korektury/opraf.js @@ -132,12 +132,15 @@ function img_click(element, ev) { function toggle_visibility(oid){ var buttondiv = document.getElementById(oid+'-buttons') var text = document.getElementById(oid+'-body'); + var toggleimg = document.getElementById(oid+'-toggleimg'); if (text.style.display == 'none'){ text.style.display = 'block'; buttondiv.style.display = 'inline-block'; + toggleimg.style.transform = ""; }else { text.style.display = 'none'; buttondiv.style.display = 'none'; + toggleimg.style.transform = "rotate(180deg)"; } for (var i=0;i -
- {{o.autor}} +
+ + {% for k in o.komentare %} +
+
+
{{k.autor}}
+
+ +
+ {% csrf_token %} + + + +
+ + +
+
+
{{k.text|linebreaks}}
+
+
+ {% endfor %} +
+
@@ -122,16 +149,9 @@ - {% if o.komentare %} - - {% else %} - - {% endif %} + {% if o.status != o.STATUS.K_OPRAVE %} - {% else %} - - {% endif %} {% if o.status == 'opraveno' or o.status == 'neni_chyba' %}
-
-
{{o.text|linebreaks}}
- - {% for k in o.komentare %} -
-
-
-
{{k.autor}}
-
- -
- {% csrf_token %} - - - {% if forloop.last %} - - {% else %} - - {% endif %} -
- - {% if forloop.last %} - - {% else %} - - {% endif %} -
-
-
{{k.text|linebreaks}}
-
- {% endfor %} -
{% endfor %}