Changeset 5741
- Timestamp:
- 11/20/08 19:44:06 (2 months ago)
- Files:
-
- projects/tg.devtools/trunk/devtools/templates/crud/master.html_tmpl (modified) (1 diff)
- projects/tg.devtools/trunk/devtools/templates/turbogears/+package+/templates/footer.html (modified) (1 diff)
- projects/tg.devtools/trunk/devtools/templates/turbogears/+package+/templates/header.html (modified) (1 diff)
- projects/tg.devtools/trunk/devtools/templates/turbogears/+package+/templates/master.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
projects/tg.devtools/trunk/devtools/templates/crud/master.html_tmpl
r4653 r5741 5 5 xmlns:xi="http://www.w3.org/2001/XInclude" 6 6 py:strip=""> 7 <?python 8 import tg 9 tg_flash = tg.get_flash() 10 ?> 7 11 8 <head py:match="head" py:attrs="select('@*')"> 12 9 <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/> 13 10 <title py:replace="''">Your title goes here</title> 14 11 <meta py:replace="select('*')"/> 15 <link rel="stylesheet" type="text/css" media="screen" href=" /css/style.css" />12 <link rel="stylesheet" type="text/css" media="screen" href="${tg.url('/css/style.css')}" /> 16 13 </head> 17 14 18 15 <body py:match="body" py:attrs="select('@*')"> 19 16 <div id="main_content"> 20 <div id="status_block" py:if="tg _flash" class="flash" py:content="tg_flash"></div>17 <div id="status_block" py:if="tg.flash" class="flash" py:content="tg.flash"></div> 21 18 <div py:replace="select('*|text()')"/> 22 19 <!-- End of main_content --> projects/tg.devtools/trunk/devtools/templates/turbogears/+package+/templates/footer.html
r5130 r5741 5 5 <div id="footer"> 6 6 <div class="flogo"> 7 <img src=" /images/under_the_hood_blue.png" alt="TurboGears" />7 <img src="${tg.url('/images/under_the_hood_blue.png')}" alt="TurboGears" /> 8 8 <p><a href="http://www.turbogears.org/2.0/">Powered by TurboGears 2</a></p> 9 9 </div> projects/tg.devtools/trunk/devtools/templates/turbogears/+package+/templates/header.html
r5144 r5741 5 5 <div id="header"> 6 6 <div class="alogo"> 7 <img src= "/images/logo.png"alt="TG2!"/>7 <img src='${tg.url("/images/logo.png")}' alt="TG2!"/> 8 8 </div> 9 9 <div class="headtext"> projects/tg.devtools/trunk/devtools/templates/turbogears/+package+/templates/master.html
r5638 r5741 5 5 xmlns:xi="http://www.w3.org/2001/XInclude" 6 6 py:strip=""> 7 <?python8 import tg9 tg_flash = tg.get_flash()10 tg_status = tg.get_status()11 ?>12 7 <head py:match="head" py:attrs="select('@*')"> 13 8 <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/> 14 9 <title py:replace="''">Your title goes here</title> 15 10 <meta py:replace="select('*')"/> 16 <link rel="stylesheet" type="text/css" media="screen" href=" /css/style.css" />11 <link rel="stylesheet" type="text/css" media="screen" href="${tg.url('/css/style.css')}" /> 17 12 </head> 18 13 … … 20 15 ${header()} 21 16 <div id="main_content"> 22 <div id="${tg _status}" py:if="tg_flash" class="flash"23 py:content="tg _flash">17 <div id="${tg.flash_status}" py:if="tg.flash" class="flash" 18 py:content="tg.flash"> 24 19 </div> 25 20 <div py:replace="select('*|text()')"/>