aboutsummaryrefslogtreecommitdiffstats
path: root/Bugs-Everywhere-Web/beweb/templates/welcome.kid
diff options
context:
space:
mode:
authorAaron Bentley <aaron.bentley@utoronto.ca>2006-04-10 22:07:54 -0400
committerAaron Bentley <aaron.bentley@utoronto.ca>2006-04-10 22:07:54 -0400
commit68df9cb4413c2642bac15a940c26e68f9d1391cb (patch)
treecb429c57d740d679a467db3034f93f96ea4e2e33 /Bugs-Everywhere-Web/beweb/templates/welcome.kid
parent16ed63b5c8dc2e211a29ba3636cd00b547ceb9aa (diff)
downloadbugseverywhere-68df9cb4413c2642bac15a940c26e68f9d1391cb.tar.gz
Updated beweb to use TurboGears 0.9
Diffstat (limited to 'Bugs-Everywhere-Web/beweb/templates/welcome.kid')
-rw-r--r--Bugs-Everywhere-Web/beweb/templates/welcome.kid33
1 files changed, 33 insertions, 0 deletions
diff --git a/Bugs-Everywhere-Web/beweb/templates/welcome.kid b/Bugs-Everywhere-Web/beweb/templates/welcome.kid
new file mode 100644
index 0000000..0d3cf3e
--- /dev/null
+++ b/Bugs-Everywhere-Web/beweb/templates/welcome.kid
@@ -0,0 +1,33 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+ py:extends="'master.kid'">
+
+<head>
+ <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
+ <title>Welcome to TurboGears</title>
+</head>
+
+<body>
+ <p>Congratulations, your TurboGears application is running as of <span py:replace="now">now</span>.</p>
+
+ <h2>Are you ready to Gear Up?</h2>
+
+ <p>Take the following steps to dive right in:</p>
+
+ <ol>
+ <li>Edit your project's model.py to create SQLObjects representing the data you're working with</li>
+ <li>Edit your dev.cfg file to point to the database you'll be using</li>
+ <li>Run "<code>tg-admin sql create</code>" to create the tables in the database</li>
+ <li>Edit controllers.py to add the functionality to your webapp</li>
+ <li>Change the master.kid template to have the headers and footers for your application.</li>
+ <li>Change welcome.kid (this template) or create a new one to display your data</li>
+ <li>Repeat steps 4-6 until done.</li>
+ <li><b>Profit!</b></li>
+ </ol>
+
+ <p>If you haven't already, you might check out some of the <a href="http://www.turbogears.org/docs/" >documentation</a>.</p>
+
+ <p>Thanks for using TurboGears! See you on the <a href="http://groups.google.com/group/turbogears" >mailing list</a> and the "turbogears" channel on irc.freenode.org!</p>
+
+</body>
+</html>