Skip to content
Snippets Groups Projects
Commit d20fcc0d4c9e authored by Rémi Cardona's avatar Rémi Cardona
Browse files

Write footer before closing html tag (closes #3702378)

parent a228fee13371
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,6 @@
self.set_request_content_type()
self.template_header(self.content_type, view)
self.template_page_content(view)
self.template_footer(view)
@monkeypatch(basetemplates.TheMainTemplate)
def template_header(self, content_type, view=None, page_title='', additional_headers=()):
......@@ -82,6 +81,7 @@
self.nav_column(view, right_boxes, 'right')
self.w(u'</div>\n') # closes class=row
self.w(u'</div>\n') # closes id="page" from template_page_content
self.template_footer(view)
self.w(u'</body>\n')
@monkeypatch(basetemplates.TheMainTemplate)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment