diff pylons_app/controllers/changelog.py @ 127:20dc7a5eb748

Html changes and cleanups, made folders for html templates, implemented tags and branches pages
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 03 May 2010 19:07:54 +0200
parents 8b06c420491d
children f7218849798a
line wrap: on
line diff
--- a/pylons_app/controllers/changelog.py	Mon May 03 18:31:00 2010 +0200
+++ b/pylons_app/controllers/changelog.py	Mon May 03 19:07:54 2010 +0200
@@ -13,17 +13,15 @@
 class ChangelogController(BaseController):
     def __before__(self):
         c.repos_prefix = config['repos_name']
-        
         c.repo_name = get_repo_slug(request)
         
-        
     def index(self):
         hg_model = HgModel()
         p = int(request.params.get('page', 1))
         repo = hg_model.get_repo(c.repo_name)
         c.repo_changesets = Page(repo, page=p, items_per_page=20)
-        c.shortlog_data = render('shortlog_data.html')
+        c.shortlog_data = render('shortlog/shortlog_data.html')
         if request.params.get('partial'):
             return c.shortlog_data
-        r = render('/shortlog.html')
+        r = render('shortlog/shortlog.html')
         return r