[60ada4]: / Allura / allura / templates / site_admin_site_notifications_list.html  Maximize  Restore  History

Download this file

101 lines (92 with data), 3.4 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{#-
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-#}
{% set page = "site_notifications" %}
{% set hide_left_bar = True %}
{% extends 'allura:templates/site_admin.html' %}
{% block content %}
<div class="grid-23"><a href="/nf/admin">Back to Site Admin Home</a></div>
<div class="grid-23"><a href="new">Create a new notification</a></div>
<div class="grid-23">
If there are multiple active notifications whose criteria match for a visitor, the most recent one will be used. After that notification has been closed explicitly or automatically reached its limit, the next one can appear.
<br><br>
</div>
{{c.page_size.display(limit=limit, page=page_url, count=count)}}
<table id="site_notifications">
<thead>
<tr>
<th>Active</th>
<th>Impressions</th>
<th>Content</th>
<th>User Role</th>
<th>Page Regex</th>
<th>Page Type</th>
<th></th>
</tr>
</thead>
{% for note in notifications %}
<tr {% if note.active %}class="active"{% endif %}>
<td><small>{{ note.active }}</small></td>
<td><small>{{ note.impressions}}</small></td>
<td><small class="tooltip" title="{{ note.content }}">{{ note.content|truncate(50) }}</small></td>
<td><small>{{ note.user_role if note.user_role}}</small></td>
<td><small class="tooltip" title="{{ note.page_regex }}">{{ note.page_regex|truncate(20) if note.page_regex}}</small></td>
<td><small>{{ note.page_tool_type if note.page_tool_type}}</small></td>
<td>
<a href="{{ note._id }}/edit">Edit</a><br>
<a href="{{ note._id }}/delete" class="sn_delete">Delete</a>
</td>
</tr>
{% endfor %}
</table>
<div class="grid-23">
{{c.page_list.display(limit=limit, page=page_url, count=count)}}
</div>
{% endblock %}
{% block extra_css %}
<style type="text/css">
.pad table {
width: 915px;
}
td {
max-width: 200px;
}
#site_notifications tr.active {
font-weight: bold;
background: lightcyan;
}
</style>
{% endblock %}
{% block extra_js %}
<script>
$(document).ready(function() {
$(".sn_delete").on("click", function(e){
e.preventDefault();
var elem = this;
$.ajax({
type: 'POST',
url: elem.href,
data: {
'_session_id': $.cookie('_session_id')
},
success: function(data) {
$(elem).parent().parent().remove();
}
});
});
});
</script>
{% endblock %}