summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/blocks/system_messages.html
blob: 18ba03d7ba44ed0b05548aa15c027e8247edb351 (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="darkred">{{ message }}</p>
        {% endfor %}
    {% endif %}
    <a id="close-notify" onclick="notify.close(true)">&times;</a>
</div>