Skip to content

Commit 55cac60

Browse files
committed
Renewed the error messages
1 parent 0e3259d commit 55cac60

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

app.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
from models import *
44
from flask_moment import Moment
55
import datetime
6+
import jsonify
7+
from requests import Response as res
68
app=Flask(__name__)
79
moment=Moment(app)
810
@app.route("/",methods=["GET"])
@@ -20,7 +22,7 @@ def remove(postid):
2022
redirect(url_for("home"))
2123
return render_template("index.html",posts=Post.select().order_by(Post.date_posted.desc()),datenow=datetime.datetime.now() ,after=afterdelete,count=len(Post.select().order_by(Post.date_posted.desc())))
2224
@app.route("/<postid>/edit",methods=['POST','GET'])
23-
def edituser(postid):
25+
def editpost(postid):
2426
error=""
2527
success="The record was successfully updated"
2628
post=Post.get(Post.id==postid)
@@ -37,21 +39,25 @@ def edituser(postid):
3739
return redirect(url_for('home',success=success))
3840
return render_template("view.html",post=post,error=error)
3941
@app.route("/user/new",methods=["POST","GET"])
40-
def newuser():
42+
def new_post():
4143
error=None
4244
if request.method=="POST":
4345
if(request.form['userid'].strip()=="" or request.form['title'].strip()=="" or request.form['content'].strip()==""):
4446
error="Please fill in all the fields "
4547
else:
4648
Post.create(user_id=request.form['userid'],title=request.form['title'],content=request.form['content'])
4749
return redirect(url_for('home',success="The record was successfully saved"))
48-
return render_template('new_user.html',error=error)
50+
return render_template('new_post.html',error=error)
4951
@app.route("/post/<int:postid>",methods=["GET"])
5052
def view_post(postid):
5153
post=Post.get(Post.id==postid)
5254
user=User.get(User.id==post.user_id)
5355
print(post)
5456
return render_template("view_post.html",post=post,datenow=datetime.datetime.now(),user=user)
57+
@app.route("/api/posts",methods=['GET'])
58+
def api_posts():
59+
posts=Post.select().order_by(Post.date_posted.desc())
60+
return res.json(posts.title)
5561
@app.errorhandler (404)
5662
def not_found(error):
5763
return render_template('404.html'), 404

0 commit comments

Comments
 (0)