forked from UWPCEWebPython/flask-mailroom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
38 lines (26 loc) · 974 Bytes
/
main.py
File metadata and controls
38 lines (26 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
import base64
from flask import Flask, render_template, request, redirect, url_for, session
from model import Donor, Donation
app = Flask(__name__)
@app.route('/')
def home():
return redirect(url_for('all'))
@app.route('/donations/')
def all():
donations = Donation.select()
return render_template('donations.jinja2', donations=donations)
@app.route('/create', methods=['GET', 'POST'])
def create():
if request.method == 'GET':
return render_template('create.jinja2')
if request.method == 'POST':
donor = Donor.select().where(Donor.name == request.form['name']).get()
donation = Donation(donor=donor, value=int(request.form['value']))
donation.save()
return redirect(url_for('home'))
else:
return render_template('create.jinja2')
if __name__ == "__main__":
port = int(os.environ.get("PORT", 6738))
app.run(host='0.0.0.0', port=port)