Skip to content

Commit efd060c

Browse files
committed
Initial commit
1 parent fd02f85 commit efd060c

9 files changed

+105
-10
lines changed

.DS_Store

6 KB
Binary file not shown.

main.py

+36-4
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,51 @@
33

44
from flask import Flask, render_template, request, redirect, url_for, session
55

6-
from model import Donation
6+
from model import Donation, Donor
77

88
app = Flask(__name__)
99

1010
@app.route('/')
1111
def home():
12-
return redirect(url_for('all'))
12+
return redirect(url_for('all_donations'))
1313

14-
@app.route('/donations/')
14+
15+
@app.route('/create/', methods=['Get','POST'])
16+
def create():
17+
if request.method == 'POST':
18+
donor = Donor()
19+
donor.donor(name=request.form['name'])
20+
value = Donor(value=request.form['value'])
21+
donor.save()
22+
value.save()
23+
else:
24+
return render_template('donations.jinja2')
25+
26+
27+
@app.route('/donations/', methods=['GET', 'POST'])
1528
def all():
1629
donations = Donation.select()
1730
return render_template('donations.jinja2', donations=donations)
18-
31+
32+
@app.route('/donations/<name>', methods=['GET', 'POST'])
33+
def donations_for(name):
34+
if request.method == 'GET':
35+
return redirect(url_for('all_donations'))
36+
37+
elif request.method == 'POST':
38+
session['donor_name'] = request.form['name']
39+
session['donor_amount'] = request.form['value']
40+
donations = Donation.select().join(Donor).where(Donor.name == name)
41+
42+
if donations is True:
43+
create()
44+
return redirect(url_for('all_donations'))
45+
46+
return render_template('create.jinja2', error="Incorrect donor name.")
47+
48+
else:
49+
return render_template('donations.jinja2', donations=donations)
50+
1951

2052
if __name__ == "__main__":
2153
port = int(os.environ.get("PORT", 6738))

model.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,22 @@
55

66
db = connect(os.environ.get('DATABASE_URL', 'sqlite:///my_database.db'))
77

8+
9+
class Login(Model):
10+
username = CharField(max_length=255, unique=False)
11+
password = CharField(max_length=255, unique=False)
12+
13+
class Meta:
14+
database = db
15+
16+
817
class Donor(Model):
9-
name = CharField(max_length=255, unique=True)
18+
name = CharField(max_length=255, unique=False)
1019

1120
class Meta:
1221
database = db
1322

23+
1424
class Donation(Model):
1525
value = IntegerField()
1626
donor = ForeignKeyField(Donor, backref='donations')

setup.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
import random
22

3-
from model import db, Donor, Donation
3+
from model import db, Donor, Donation,Login
44

55
db.connect()
66

77
# This line will allow you "upgrade" an existing database by
88
# dropping all existing tables from it.
9-
db.drop_tables([Donor, Donation])
9+
db.drop_tables([Donor, Donation,Login])
1010

11-
db.create_tables([Donor, Donation])
11+
db.create_tables([Donor, Donation,Login])
12+
13+
user = Login(username='admin',password='123456')
14+
user.save()
1215

1316
alice = Donor(name="Alice")
1417
alice.save()

templates/all_donations.jinja2

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{% extends 'base.jinja2' %}
2+
3+
{% block subtitle %}All the things{% endblock subtitle %}
4+
5+
{% block content %}
6+
<ul>
7+
{% for donation in donations %}
8+
<li>
9+
{{ donation.donor.name }} {% if donation.value %}Done on {{ donation.value }} by {{ donation.value }}{% else %} Undone {% endif %}
10+
</li>
11+
{% endfor %}
12+
</ul>
13+
{% endblock content %}

templates/base.jinja2

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,9 @@
66
<h1>Donations</h1>
77
<h2>{% block subtitle %} {% endblock subtitle %}</h2>
88
{% block content %} {% endblock content %}
9+
<ul>
10+
<li><a href="{{ url_for('home') }}">home</a></li>
11+
<li><a href="{{ url_for('create') }}">new donations</a></li>
12+
</ul>
913
</body>
10-
</html>
14+
</html>

templates/create.jinja2

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{% extends 'base.jinja2' %}
2+
3+
{% block subtitle %}Create a new donor{% endblock subtitle %}
4+
5+
{% block content %}
6+
<form method="POST" action="/create/">
7+
<label for="name-input">Name:</label><input id="name-input" type="text" name="name">
8+
<label for="amount-input">Value:</label><input id="amount-input" type="text" name="value">
9+
<input type="submit" value="Create donor">
10+
</form>
11+
{% endblock content %}

templates/donations.jinja2

+11-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,19 @@
33
{% block subtitle %}Donations{% endblock subtitle %}
44

55
{% block content %}
6+
<form method="POST" action="/donations2/">
7+
<label for="name-input">Name:</label><input id="name-input" type="text" name="name">
8+
<label for="amount-input">Value:</label><input id="amount-input" type="text" name="value">
9+
<input type="submit" value="Create donor">
10+
</form>
611
<ul>
712
{% for donation in donations %}
8-
<li><b>{{ donation.donor.name }}</b>: {{ donation.value }}</li>
13+
{% if donation.donor.name %}
14+
<li><b>{{ donation.donor.name }}</b>: {{ donation.value }}</li>
15+
{% else %}
16+
<h1>No Username Exist!!</h1>
17+
{% endif %}
18+
919
{% endfor %}
1020
</ul>
1121
{% endblock content %}

templates/login.jinja2

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{% extends 'base.jinja2' %}
2+
3+
{% block subtitle %}Create a new donor{% endblock subtitle %}
4+
5+
{% block content %}
6+
<form method="POST" action="/login/">
7+
<label for="name-input">UserName:</label><input id="name-input" type="text" name="name">
8+
<label for="amount-input">PassWord:</label><input id="amount-input" type="password" name="password">
9+
<input type="submit" value="Create donor">
10+
</form>
11+
{{ error }}
12+
{% endblock content %}

0 commit comments

Comments
 (0)