comparison rhodecode/templates/admin/notifications/show_notification.html @ 3431:f60a07dbe2f0 beta

notification inbox show subject
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 02 Mar 2013 21:31:02 +0100
parents c25cc1c7c65f
children 1f334a68d057
comparison
equal deleted inserted replaced
3430:bbe21df7ad48 3431:f60a07dbe2f0
37 </div> 37 </div>
38 <div class="delete-notifications"> 38 <div class="delete-notifications">
39 <span id="${c.notification.notification_id}" class="delete-notification delete_icon action"></span> 39 <span id="${c.notification.notification_id}" class="delete-notification delete_icon action"></span>
40 </div> 40 </div>
41 </div> 41 </div>
42 <div class="notification-body">${h.rst_w_mentions(c.notification.body)}</div> 42 <div class="notification-body">
43 <div class="notification-subject">${h.literal(c.notification.subject)}</div>
44 %if c.notification.body:
45 ${h.rst_w_mentions(c.notification.body)}
46 %endif
47 </div>
43 </div> 48 </div>
44 </div> 49 </div>
45 </div> 50 </div>
46 <script type="text/javascript"> 51 <script type="text/javascript">
47 var url = "${url('notification', notification_id='__NOTIFICATION_ID__')}"; 52 var url = "${url('notification', notification_id='__NOTIFICATION_ID__')}";