diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-23 14:47:49 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-23 14:47:49 +0100 |
commit | 05bb2595cbc6addbf5cdf145545feca5a5838ef9 (patch) | |
tree | 0ed78d36fbfdf5f86f53f58ed4b5c8eb939de8c5 /templates/list_networks.html | |
parent | ca566286c6afe7b75fa2d289579e6577a8410823 (diff) | |
download | znc-log-viewer-05bb2595cbc6addbf5cdf145545feca5a5838ef9.tar.xz |
Initial commit of working Flask app
Diffstat (limited to 'templates/list_networks.html')
-rw-r--r-- | templates/list_networks.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/list_networks.html b/templates/list_networks.html new file mode 100644 index 0000000..aed9ee9 --- /dev/null +++ b/templates/list_networks.html @@ -0,0 +1,30 @@ +<html> +<head> + <style> +.tree, .tree ul{ font: normal normal 14px/20px Helvetica, Arial, sans-serif; list-style-type: none; margin-left: 0 0 0 10px; padding: 0; position: relative; overflow:hidden;} +.tree li{ margin: 0; padding: 0 12px; position: relative; } +.tree li::before, .tree li::after{ content: ''; position: absolute; left: 0; } +/* horizontal line on inner list items */ +.tree li::before{ border-top: 1px solid #999; top: 10px; width: 10px; height: 0; } +/* vertical line on list items */ +.tree li:after{ border-left: 1px solid #999; height: 100%; width: 0px; top: -10px; } +/* lower line on list items from the first level because they don't have parents */ +.tree > li::after{ top: 10px; } +/* hide line from the last of the first level list items */ +.tree > li:last-child::after{ display: none; } +.tree ul:last-child li:last-child:after{ height:20px; } +</style> +</head> +<body> + <ul class="tree"> + {% for network in networks %} + <li><a href="{{ network.url }}">{{ network.name }}</a> + <ul> + {% for channel in network.channels %} + <li><a href="{{ channel.url }}">{{ channel.name }}</a></li> + {% endfor %} + </ul> + </li> + {% endfor %} + </ul> +</body> |