~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/tutorial/__init__.py

ivle.webapp.base.xhtml#XHTMLView: Rename app_template to template (the things
    that use it are views, not apps).

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
 
83
83
class SubjectView(XHTMLView):
84
84
    '''The view of the index of worksheets for a subject.'''
85
 
    app_template = 'subjectmenu.html'
 
85
    template = 'subjectmenu.html'
86
86
    appname = 'tutorial' # XXX
87
87
 
88
88
    def __init__(self, req, subject):
170
170
 
171
171
class WorksheetView(XHTMLView):
172
172
    '''The view of a worksheet with exercises.'''
173
 
    app_template = 'worksheet.html'
 
173
    template = 'worksheet.html'
174
174
    appname = 'tutorial' # XXX
175
175
 
176
176
    def __init__(self, req, subject, worksheet):