added template for admin list of zones
This commit is contained in:
parent
0824f0d86b
commit
cf1e2deed5
1 changed files with 18 additions and 0 deletions
18
templates/list_mappings.html
Normal file
18
templates/list_mappings.html
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html xml:lang="de" lang="de"
|
||||||
|
xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
|
xmlns:py="http://genshi.edgewall.org/">
|
||||||
|
<xi:include href="layout.html" />
|
||||||
|
|
||||||
|
<head/>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<ul>
|
||||||
|
<li py:for="zone_name, admin_url in mapping">
|
||||||
|
<a href="${admin_url}">${zone_name}</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue