File: row.tpl

package info (click to toggle)
haproxy 3.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 24,600 kB
  • sloc: ansic: 275,217; sh: 3,607; xml: 1,756; python: 1,345; makefile: 1,162; perl: 168; cpp: 21
file content (42 lines) | stat: -rw-r--r-- 1,421 bytes parent folder | download | duplicates (3)
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
<% from urllib.parse import quote %>
<% base = pctxt.context['base'] %>
<tr>\
% for col in columns:
<% data = col['data'] %>\
<%
    if data in ['yes']:
        style = "class=\"alert-success pagination-centered\""
        data = 'yes<br /><img src="%scss/check.png" alt="yes" title="yes" />' % base
    elif data in ['yes(!)']:
        style = "class=\"alert-info pagination-centered\""
        data = 'yes(!)<br /><img src="%scss/checkmark.png" alt="yes(!)" title="yes(!)" />' % base
    elif data in ['no']:
        style = "class=\"alert-error pagination-centered\""
        data = 'no<br /><img src="%scss/cross.png" alt="no" title="no" />' % base
    elif data in ['X']:
        style = "class=\"pagination-centered\""
        data = '<img src="%scss/check.png" alt="X" title="yes" />' % base
    elif data in ['X (!)']:
        style = "class=\"pagination-centered\""
        data = '<img src="%scss/checkmark.png" alt="X (!)" title="yes (!)" />' % base
    elif data in ['-']:
        style = "class=\"pagination-centered\""
        data = '&nbsp;'
    elif data in ['*']:
        style = "class=\"pagination-centered\""
    else:
        style = ""
%>\
<td ${style}>\
% if "keyword" in col:
<a href="#${quote("%s-%s" % (col['toplevel'], col['keyword'].split('(')[0]))}">\
% for extra in col['extra']:
<span class="pull-right">${extra}</span>\
% endfor
${data}</a>\
% else:
${data}\
% endif
</td>\
% endfor
</tr>