Files @ 8b06c420491d
Branch filter:

Location: kallithea/pylons_app/controllers/branches.py

Marcin Kuzminski
statics moved to pylons.
import logging

from pylons import request, response, session, tmpl_context as c, url
from pylons.controllers.util import abort, redirect

from pylons_app.lib.base import BaseController, render

log = logging.getLogger(__name__)

class BranchesController(BaseController):

    def index(self):
        # Return a rendered template
        #return render('/branches.mako')
        # or, return a string
        return 'Hello World'