Changeset - 53b53b8602e4
[Not reviewed]
default
0 1 2
Dennis Fink - 11 years ago 2013-11-17 21:50:11
dennis.fink@c3l.lu
added stats
3 files changed with 8 insertions and 0 deletions:
0 comments (0 inline, 0 general)
ennstatus/api/__pycache__/views.cpython-33.pyc
Show inline comments
 
binary diff not shown
ennstatus/stats/__init__.py
Show inline comments
 
new file 100644
ennstatus/stats/views.py
Show inline comments
 
new file 100644
 
from flask import Blueprint, redirect
 

	
 
stats_page = Blueprint('stats', __name__)
 

	
 

	
 
@stats_page.route('/')
 
def index():
 
    return redirect('/')
0 comments (0 inline, 0 general)