# HG changeset patch # Parent 69c500d7634c0e5287508cfaffa14174cc47d800 diff --git a/controllers/academy.py b/controllers/academy.py --- a/controllers/academy.py +++ b/controllers/academy.py @@ -12,12 +12,12 @@ teaching_assistants = [ ] class academy(main.Home): - @http.route('/', auth='none', website=True) + @http.route('/', auth='public', website=True) def index(self): return http.request.website.render('academy.index', { 'tas': teaching_assistants, }) - @http.route('/tas//', auth='none', website=True) + @http.route('/tas//', auth='public', website=True) def ta(self, id): return http.request.website.render('academy.ta', teaching_assistants[id]) diff --git a/views/templates.xml b/views/templates.xml --- a/views/templates.xml +++ b/views/templates.xml @@ -1,42 +1,46 @@ -