forked from gohil-jay/Macro-Python-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
66 lines (49 loc) · 1.85 KB
/
app.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from flask import Flask, render_template, request, flash
from flask_sqlalchemy import SQLAlchemy
from send_mail import send_mail
app = Flask(__name__)
ENV = 'dev'
if ENV == 'dev':
app.debug = True
app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://postgres:password@localhost/dominos'
else:
app.debug = False
app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://<heroku_url>'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
db = SQLAlchemy(app)
class Feedback(db.Model):
__tablename__ = 'feedback'
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(200), unique=True)
branch = db.Column(db.String(200))
rating = db.Column(db.Integer)
comments = db.Column(db.Text())
def __init__(self, name, branch, rating, comments):
self.name = name
self.branch = branch
self.rating = rating
self.comments = comments
@app.route("/")
def index():
return render_template('index.html')
@app.route("/submit", methods = ['POST'])
def submit():
if request.method == 'POST':
name = request.form.get('name')
branch = request.form.get('branch')
rating = request.form.get('rating')
comments = request.form.get('comments')
# print(name, branch, rating, comments)
if name == '' or branch == '':
return render_template('index.html', message='Please enter required fields!')
# if name == '' or branch == '':
# flash('Please enter required fields', category='error')
if db.session.query(Feedback).filter(Feedback.name == name).count() == 0:
data = Feedback(name, branch, rating, comments)
db.session.add(data)
db.session.commit()
send_mail(name, branch, rating, comments)
return render_template('success.html')
return render_template('submitted.html')
if __name__ == '__main__':
app.run()