Update Readme and fix GitLab announcements

This commit is contained in:
colcrunch
2018-12-20 22:04:39 +00:00
committed by Basraah
parent 09df37438d
commit 79c5be02e2
2 changed files with 4 additions and 4 deletions

View File

@@ -8,12 +8,12 @@
<ul class="list-group">
{% for notif in notifications %}
<li class="list-group-item">
{% if notif.state == 'open' %}
{% if notif.state == 'opened' %}
<span class="label label-success">{% trans "Open" %}</span>
{% else %}
<span class="label label-danger">{% trans "Closed" %}</span>
{% endif %}
<a href="{{ notif.web_url }}" target="_blank">#{{ notif.number }} {{ notif.title }}</a>
<a href="{{ notif.web_url }}" target="_blank">#{{ notif.iid }} {{ notif.title }}</a>
</li>
{% endfor %}
</ul>