Newer
Older

Oliwer Mattsson
committed
from flask import Flask, render_template, request

Oliwer Mattsson
committed
from data import *

Oliwer Mattsson
committed
app = Flask(__name__, template_folder='./templates')

Oliwer Mattsson
committed
data = load('data.json')
@app.route("/")
def index():

Oliwer Mattsson
committed
return render_template('index.html')

Oliwer Mattsson
committed
@app.route("/list.html", methods=['GET', 'POST'])

Oliwer Mattsson
committed
def list():

Oliwer Mattsson
committed
search_query = request.form.get('search', '')
sort_by = request.form.get('sort_by', 'start_date')
sort_order = request.form.get('sort_order', 'desc')
filtered_projects = search(data, sort_by=sort_by, sort_order=sort_order, search=search_query)
return render_template('list.html', projects=filtered_projects, search_query=search_query, sort_by=sort_by, sort_order=sort_order)
@app.route("/project/<int:project_id>")
def project_details(project_id):
project = get_project(data, project_id)
if project:
return render_template('project_details.html', project=project)
else:
return "Project not found", 404
if __name__ == "__main__":
app.run(debug=True)