- Timestamp:
- 07/06/11 16:03:47 (13 years ago)
- Location:
- trunk/templates
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/grptree.tmpl
r69 r99 1 1 <TMPL_VAR NAME=indent><ul class="grptree"> 2 2 <TMPL_LOOP NAME=treelvl><TMPL_VAR NAME=indent> <li class="<TMPL_IF NAME=subs>hassub<TMPL_ELSE>leaf</TMPL_IF>"> 3 <TMPL_IF name=subs><TMPL_VAR NAME=indent> <label for=" <TMPL_VAR NAME=grpname>"><TMPL_VAR NAME=grpdisp></label>4 <TMPL_VAR NAME=indent> <input type="checkbox" class="grptreebox" checked id="<TMPL_VAR NAME=grpname>" /><TMPL_ELSE><TMPL_VAR NAME=indent> <TMPL_VAR NAME=grpdisp></TMPL_IF>3 <TMPL_IF name=subs><TMPL_VAR NAME=indent> <label for="grp_<TMPL_VAR NAME=grpname>"><TMPL_VAR NAME=grpdisp></label> 4 <TMPL_VAR NAME=indent> <input type="checkbox" class="grptreebox" checked="checked" id="grp_<TMPL_VAR NAME=grpname>" /><TMPL_ELSE><TMPL_VAR NAME=indent> <TMPL_VAR NAME=grpdisp></TMPL_IF> 5 5 <TMPL_VAR NAME=subs><TMPL_VAR NAME=indent> </li> 6 6 </TMPL_LOOP><TMPL_VAR NAME=indent></ul> -
trunk/templates/header.tmpl
r84 r99 5 5 <title>tinyDNS Administration</title> 6 6 <!-- General stylesheet for most content, all browsers --> 7 <link rel="stylesheet" type="text/css" href="templates/dns.css" >7 <link rel="stylesheet" type="text/css" href="templates/dns.css" /> 8 8 9 <!-- 10 Fair warning: this does NOT validate according to the DTD above! 11 Unlike in the body these if/endif constructs don't work for IE6 if 12 fully embedded in proper comment tags. >:( 13 --> 9 14 <!-- Load a secondary stylesheet for the group tree for IE ... --> 10 15 <![if IE]> 11 <title>css tree test page - Internet Exploder</title> 12 <link rel="stylesheet" type="text/css" href="templates/grouptree-ie.css"> 16 <link rel="stylesheet" type="text/css" href="templates/grouptree-ie.css" /> 13 17 <![endif]> 14 18 15 19 <!-- ... and now override the IE glop with the nifty CSS-only collapsing tree --> 16 20 <![if !IE]> 17 <title>css tree test page - Real Browsers(TM)</title> 18 <link rel="stylesheet" type="text/css" href="templates/grouptree.css"> 21 <link rel="stylesheet" type="text/css" href="templates/grouptree.css" /> 19 22 <![endif]> 20 23 </head> -
trunk/templates/menu.tmpl
r69 r99 27 27 <li class="<TMPL_IF NAME=subs>hassub<TMPL_ELSE>leaf</TMPL_IF>"> 28 28 <TMPL_IF name=subs> <label for="<TMPL_VAR NAME=logingrp>"><TMPL_IF inlogingrp><b><TMPL_VAR NAME=logingrp></b><TMPL_ELSE><TMPL_VAR NAME=logingrp></TMPL_IF></label> 29 <input type="checkbox" checked id="<TMPL_VAR NAME=logingrp>" /><TMPL_ELSE>29 <input type="checkbox" checked="checked" id="<TMPL_VAR NAME=logingrp>" /><TMPL_ELSE> 30 30 <TMPL_IF inlogingrp><b><TMPL_VAR NAME=logingrp></b><TMPL_ELSE><TMPL_VAR NAME=logingrp></TMPL_IF></TMPL_IF> 31 31 <TMPL_VAR NAME=grptree>
Note:
See TracChangeset
for help on using the changeset viewer.