Lacrima132 / Agile-Web-Dev-Project

Forum Project for Agile Web Dev
1 stars 0 forks source link

allowing the deletion of posts by logged in users only (deleting posts only you have made) #23

Closed trebbyyy closed 4 months ago

trebbyyy commented 4 months ago

put this into profile.html to allow users to delete posts `{% for current_user_post in current_user_posts %}

{{ current_user_post.title }}

{{ current_user_post.desc }}

{% if current_user == current_user_post.author %}
{% endif %}

{% endfor %} `

Lacrima132 commented 4 months ago

We should also have an alert/pop-up to ensure the user wants to delete the post

trebbyyy commented 4 months ago

Deletions work well, just need to make it so we can add a pop up!