summaryrefslogtreecommitdiffstats
path: root/askbot/templates/widgets/system_messages.html
blob: 10ba4a84cd70fdb08b088fa4a747f4d66000219f (plain)
1
2
3
4
5
6
7
8
<div class="notify" style="display:none">
    {% if user_messages %}
        {% for message in user_messages %}
              <p class="notification">{{ message }}</p>
        {% endfor %}
    {% endif %}
    <a id="closeNotify" onclick="notify.close(true)"></a>
</div>