diff --git a/openslides/application/templates/application/poll_view.html b/openslides/application/templates/application/poll_view.html index 7728d8837..f5d608a8c 100644 --- a/openslides/application/templates/application/poll_view.html +++ b/openslides/application/templates/application/poll_view.html @@ -23,6 +23,7 @@

{%trans "Results of" %} {{ ballot }}. {%trans "Vote" %}

-1 := {% trans 'majority' %}, -2 := {% trans 'undocumented' %}
{% csrf_token %} + {{ pre_form }} diff --git a/openslides/static/javascript/utils.js b/openslides/static/javascript/utils.js index 762482d5b..aeeff3d4c 100644 --- a/openslides/static/javascript/utils.js +++ b/openslides/static/javascript/utils.js @@ -14,7 +14,8 @@ $(function () { function new_message(text, type) { - message = $('#dummy-notification').clone(true); - $(message).show().addClass(type).children('em').html(text); + var message = $('#dummy-notification').clone(true); + $(message).removeAttr('id').addClass(type).children('em').html(text); $('#notifications').append(message); + message.slideDown('fast'); } diff --git a/openslides/templates/base.html b/openslides/templates/base.html index fb978887b..709705778 100644 --- a/openslides/templates/base.html +++ b/openslides/templates/base.html @@ -67,7 +67,7 @@ {% endfor %}