From b3be15b09e65787a7350fcca0e794eb79a6262b1 Mon Sep 17 00:00:00 2001 From: Surya Date: Wed, 24 Jul 2024 22:51:28 +0200 Subject: [PATCH] Delete templates/users/profile.html --- templates/users/profile.html | 58 ------------------------------------ 1 file changed, 58 deletions(-) delete mode 100644 templates/users/profile.html diff --git a/templates/users/profile.html b/templates/users/profile.html deleted file mode 100644 index 3d7c056..0000000 --- a/templates/users/profile.html +++ /dev/null @@ -1,58 +0,0 @@ - - -{% extends 'base.html' %} -{% block content %} - - {% load markdown_extras %} - -
-
- -
-
-
-
- Latest Posts -
-
- {% for post in posts %} - {% if post.author == profileUser %} - -
-
-
{{ post.author.username }} @{{ post.author.id }}
-

{{ post.content | markdown | safe }}

- -
-
- - {% endif %} - {% endfor %} -
-
-
-
- - -
-
-
-
- Profile Image -
-
-

{{ profileUser.username }}

-

@{{ profileUser.id }}

-

Date Joined: Jan 1, 2022

- {% if profileUser == user %} - Edit Profile - {% endif %} -
-
-
-
- -
-
- -{% endblock %}