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