2015-03-31 20:15:22 +02:00
|
|
|
__author__ = 'feliciaan'
|
|
|
|
|
2016-08-01 23:40:04 +02:00
|
|
|
from flask import url_for, render_template, abort, redirect, request, abort
|
2015-03-31 20:15:22 +02:00
|
|
|
from flask.ext.login import current_user, login_required
|
|
|
|
from datetime import datetime, timedelta
|
|
|
|
|
|
|
|
from app import app, db
|
2016-08-01 23:40:04 +02:00
|
|
|
from models import Order, OrderItem, Location
|
2015-03-31 20:15:22 +02:00
|
|
|
|
|
|
|
# import views
|
|
|
|
from views.order import get_orders
|
|
|
|
|
|
|
|
@app.route('/')
|
|
|
|
def home():
|
|
|
|
prev_day = datetime.now() - timedelta(days=1)
|
|
|
|
recently_closed = get_orders(((Order.stoptime > prev_day) & (Order.stoptime < datetime.now())))
|
|
|
|
return render_template('home.html', orders=get_orders(), recently_closed=recently_closed)
|
|
|
|
|
|
|
|
|
2016-08-01 23:40:04 +02:00
|
|
|
@app.route('/location')
|
|
|
|
def locations():
|
|
|
|
locs = Location.query.order_by('name')
|
|
|
|
return render_template('locations.html', locations=locs)
|
|
|
|
|
|
|
|
|
|
|
|
@app.route('/location/<int:id>')
|
|
|
|
def location(id):
|
|
|
|
loc = Location.query.filter(Location.id==id).first()
|
|
|
|
if loc is None:
|
|
|
|
abort(404)
|
|
|
|
return render_template('location.html', location=loc)
|
|
|
|
|
2015-03-31 20:15:22 +02:00
|
|
|
@app.route('/about/')
|
|
|
|
def about():
|
|
|
|
return render_template('about.html')
|
|
|
|
|
|
|
|
|
|
|
|
@app.route('/stats/')
|
|
|
|
def stats():
|
|
|
|
return render_template('stats.html')
|
|
|
|
|
2015-06-05 11:39:34 +02:00
|
|
|
@app.route('/profile/')
|
|
|
|
@login_required
|
|
|
|
def profile():
|
|
|
|
return render_template('profile.html')
|
|
|
|
|
2015-03-31 20:15:22 +02:00
|
|
|
|
|
|
|
if app.debug: # add route information
|
|
|
|
@app.route('/routes')
|
|
|
|
@login_required
|
|
|
|
def list_routes():
|
|
|
|
import urllib
|
|
|
|
output = []
|
|
|
|
for rule in app.url_map.iter_rules():
|
|
|
|
options = {}
|
|
|
|
for arg in rule.arguments:
|
|
|
|
options[arg] = "[{0}]".format(arg)
|
|
|
|
print(rule.endpoint)
|
|
|
|
methods = ','.join(rule.methods)
|
|
|
|
url = url_for(rule.endpoint, **options)
|
|
|
|
line = urllib.parse.unquote(
|
|
|
|
"{:50s} {:20s} {}".format(rule.endpoint, methods, url))
|
|
|
|
output.append(line)
|
|
|
|
|
|
|
|
string = ''
|
|
|
|
for line in sorted(output):
|
|
|
|
string += line + "<br/>"
|
|
|
|
|
|
|
|
return string
|