##// END OF EJS Templates
white-list-access: improved UI.
marcink -
r2122:de425417 default
parent child Browse files
Show More
@@ -16,15 +16,14 b' E.g. adding `RepoFilesView.repo_file_raw'
16 16 http[s]://server.com/{repo_name}/raw/{commit_id}/{file_path}?auth_token=SECRET_TOKEN
17 17
18 18 White list can be defined inside `${c.whitelist_file}` under `${c.whitelist_key}=` setting
19
20 Currently under this settings following views are set:
19 Currently the following views are set:
21 20 </p>
22 21
23 <pre>
22 <pre>
24 23 % for entry in c.whitelist_views:
25 24 ${entry}
26 25 % endfor
27 </pre>
26 </pre>
28 27
29 28 </div>
30 29
@@ -49,7 +48,11 b' Currently under this settings following '
49 48
50 49 % for route_name, view_fqn, view_url, active in c.view_data:
51 50 <tr>
52 <td class="td-x">${h.bool2icon(active)}</td>
51 <td class="td-x">
52 % if active:
53 ${h.bool2icon(active)}
54 % endif
55 </td>
53 56 <td class="td-x">${view_fqn}</td>
54 57 <td class="td-x" title="${route_name}">${view_url}</td>
55 58 </tr>
General Comments 0
You need to be logged in to leave comments. Login now