chargement initial

This commit is contained in:
CAO Thien-An
2017-07-22 11:25:44 +02:00
parent 6aa83a3286
commit 2093b3588f
285 changed files with 101783 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
# -*- coding: utf8 -*-
from pyramid.view import notfound_view_config
@notfound_view_config(renderer='../templates/404.pt')
def notfound_view(request):
request.response.status = 404
return {
'page_title': 'Oups!',
}