Merge branch 'bugfix' into 'master'

pedagogy: correctly fill star widget when editing comment

Closes #88

See merge request ae/Sith!223
This commit is contained in:
Antoine Bartuccio 2019-08-20 22:57:02 +02:00
commit eb29f98c37
1 changed files with 8 additions and 0 deletions

View File

@ -15,6 +15,7 @@
</style>
{# Do not vote button #}
<label class="star">
<input type="radio" name="{{ widget.name }}" value="-1" onclick='
var stars = document.getElementsByClassName("{{ widget.name }}");
@ -27,6 +28,8 @@
' checked>
<span class="fa fa-times-circle"> {{ translations.do_not_vote }}</span>
</label>
{# Star widget #}
{% for i in number_of_stars %}
<label class="star">
<input type="radio" name="{{ widget.name }}" value="{{ forloop.counter0 }}" onclick='
@ -47,4 +50,9 @@
</label>
{% endfor %}
{# Restaure previous (-1 is default) #}
<script type="text/javascript">
document.querySelector("input[name='{{ widget.name }}'][value='{{ widget.value }}']").click()
</script>
</div>