blob: 9e048beb27dd53d3e795b155366d48219302745e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<div class="notification">
{% if notification.cid != 0 and notification.aid != 0 %}
<small>
<a class="rmc" data-nid="{{ notification.id }}" href="{% url 'website:get_question' answer.question.id %}#comment{{ answer.id }}">New <strong>Comment</strong> on <strong>"{{ question.title }}"</strong></a>
</small>
{% elif notification.cid == 0 %}
<a class="rmc" data-nid="{{ notification.id }}" href="{% url 'website:get_question' answer.question.id %}#answer{{ answer.id }}"+ >New <strong>Answer</strong> on <strong>"{{ question.title }}"</strong></a>
{% endif %}
<a class="remove" data-nid="{{ notification.id }}" href= "">
<span class="glyphicon glyphicon-remove-circle"></span>
</a>
</div> <!-- /.notification -->
|