Skip to content

Commit 600f511

Browse files
committed
Love of the past
1 parent faac546 commit 600f511

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

app.py

+13-12
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,23 @@ def remove(postid):
1919
afterdelete="Post successfully deleted"
2020
redirect(url_for("home"))
2121
return render_template("index.html",posts=Post.select().order_by(Post.date_posted.desc()),after=afterdelete,count=len(Post.select().order_by(Post.date_posted.desc())))
22-
@app.route("/<username>/edit",methods=['POST','GET'])
23-
def edituser(username):
22+
@app.route("/<postid>/edit",methods=['POST','GET'])
23+
def edituser(postid):
2424
error=""
25-
success="The record <strong><em>{}</strong></em> was successfully update".format(username)
26-
if username not in users:
27-
return render_template("404.html")
25+
success="The record was successfully updated"
26+
post=Post.get(Post.id==postid)
2827
if request.method=="POST":
29-
newusername=request.form['username'].strip()
30-
if(newusername==""):
31-
error="Please give us a username"
28+
newtitle=request.form['title'].strip()
29+
newcontent=request.form['content'].strip()
30+
if(newtitle=="" or newcontent==""):
31+
error="Please provide a title and content before saving"
3232
else:
33-
if username not in users:
34-
return render_template("404.html")
35-
users[users.index(username)]=newusername
33+
post.title=newtitle
34+
post.content=newcontent
35+
post.date_posted=datetime.datetime.now()
36+
post.save()
3637
return redirect(url_for('home',success=success))
37-
return render_template("view.html",user=username,error=error)
38+
return render_template("view.html",post=post,error=error)
3839
@app.route("/user/new",methods=["POST","GET"])
3940
def newuser():
4041
error=None

db/coding.db

0 Bytes
Binary file not shown.

models.py

-4
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,5 @@ class Meta:
2121
def initialize_db():
2222
db.connect()
2323
db.create_tables([User,Post],safe=True)
24-
def create_data():
25-
user=User.create(username="Silas Kenneth",emailaddress="silaskenn@gmail.com",password=crypt("Nyamwaro2012"))
26-
user1=User.create(username="James Makori",emailaddress="jamesmakori@gmail.com",password=crypt("Nyamwaro2012"))
27-
user2=User.create(username="John Kennedy",emailaddress="johnkennedy@gmail.com",password=crypt("Nyamwaro2012"))
2824
initialize_db()
2925

0 commit comments

Comments
 (0)