This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCMSSiteReadiness.html
82 lines (72 loc) · 2.14 KB
/
CMSSiteReadiness.html
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
## -*- coding: utf-8 -*-
<%inherit file="/module_base.html" />
<%def name="content()">
<form>
<table class="TableData">
% for i,group in enumerate(tabledata):
<td class = "ok" >${group['name']}</td>
<td class=${group['01_color']}>
% if group['01_link']!='none':
<a href = ${group['01_link']}>${group['01_data']}</a>
%else:
${group['01_data']}
% endif </td>
<td class=${group['02_color']}>
% if group['02_link']!='none':
<a href = ${group['02_link']}>${group['02_data']}</a>
%else:
${group['02_data']}
% endif </td>
<td class=${group['03_color']}>
% if group['03_link']!='none':
<a href = ${group['03_link']}>${group['03_data']}</a>
%else:
${group['03_data']}
% endif </td>
<td class=${group['04_color']}>
% if group['04_link']!='none':
<a href = ${group['04_link']}>${group['04_data']}</a>
%else:
${group['04_data']}
% endif </td>
<td class=${group['05_color']}>
% if group['05_link']!='none':
<a href = ${group['05_link']}>${group['05_data']}</a>
%else:
${group['05_data']}
% endif </td>
<td class=${group['06_color']}>
% if group['06_link']!='none':
<a href = ${group['06_link']}>${group['06_data']}</a>
%else:
${group['06_data']}
% endif </td>
<td class=${group['07_color']}>
% if group['07_link']!='none':
<a href = ${group['07_link']}>${group['07_data']}</a>
%else:
${group['07_data']}
% endif </td>
<td class=${group['08_color']}>
% if group['08_link']!='none':
<a href = ${group['08_link']}>${group['08_data']}</a>
%else:
${group['08_data']}
% endif </td>
<td class=${group['09_color']}>
% if group['09_link']!='none':
<a href = ${group['09_link']}>${group['09_data']}</a>
%else:
${group['09_data']}
% endif </td>
<td class=${group['10_color']}>
% if group['10_link']!='none':
<a href = ${group['10_link']}>${group['10_data']}</a>
%else:
${group['10_data']}
% endif </td>
</tr>
% endfor
</table>
</form>
</%def>