1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 07:40:54 -05:00

final changes for 2.0 release

This commit is contained in:
RaidMax
2018-04-21 17:18:20 -05:00
parent a515d9688c
commit c7b4706e78
20 changed files with 230 additions and 87 deletions

View File

@ -5,13 +5,14 @@ Routes and views for the flask application.
from datetime import datetime
from flask import render_template
from master import app
from master.resources.history_graph import HistoryGraph
@app.route('/')
@app.route('/home')
def home():
"""Renders the home page."""
_history_graph = HistoryGraph().get(500)
return render_template(
'index.html',
title='Home Page',
year=datetime.now().year,
)
title='API Overview',
history_graph = _history_graph[0]['message'],
data_points = _history_graph[0]['data_points']
)