Changeset - 4eaea26f42fd
[Not reviewed]
default
3 0 4
Dennis Fink - 11 years ago 2014-02-04 01:11:55
dennis.fink@c3l.lu
moved views.py, forms.py and constants.py from root blueprint to its own subpackage
4 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
ennstatus/root/__init__.py
Show inline comments
 
new file 100644
ennstatus/root/constants.py
Show inline comments
 
file renamed from ennstatus/constants.py to ennstatus/root/constants.py
ennstatus/root/forms.py
Show inline comments
 
file renamed from ennstatus/forms.py to ennstatus/root/forms.py
ennstatus/root/views.py
Show inline comments
 
file renamed from ennstatus/views.py to ennstatus/root/views.py
 
from flask import (Blueprint, render_template, current_app,
 
                   request, redirect, url_for)
 

	
 
from ennstatus.forms import BPMForm
 
from ennstatus.constants import BPM_ADDRESSES
 
from ennstatus.root.forms import BPMForm
 
from ennstatus.root.constants import BPM_ADDRESSES
 

	
 
root_page = Blueprint('root', __name__)
 

	
0 comments (0 inline, 0 general)