Changeset 2612
- Timestamp:
- 02/23/07 09:10:40 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/turbogears/qstemplates/quickstart/+package+/controllers.py_tmpl
r2152 r2612 1 from turbogears import controllers, expose 1 from turbogears import controllers, expose, flash 2 2 # from model import * 3 3 #if $identity != "none" … … 17 17 import time 18 18 # log.debug("Happy TurboGears Controller Responding For Duty") 19 flash("Your application is now running") 19 20 return dict(now=time.ctime()) 20 21 #if $identity != "none" branches/1.0/turbogears/qstemplates/quickstart/+package+/templates/master.kid
r2597 r2612 33 33 <div id="header"> </div> 34 34 <div id="main_content"> 35 <div class="flash" py:content="value_of('tg_flash', None)"></div>35 <div id="status_block" class="flash" py:content="value_of('tg_flash', None)"></div> 36 36 37 37 <div py:replace="[item.text]+item[:]"/> branches/1.0/turbogears/qstemplates/quickstart/+package+/templates/welcome.kid
r1976 r2612 8 8 <body> 9 9 10 <div id="status_block">Your application is now running</div>11 10 <div id="sidebar"> 12 11 <h2>Learn more</h2>