Added new Templates: profile.html
Changed: requirements.txt and .gitignore
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,5 +2,6 @@
|
|||||||
/.idea/
|
/.idea/
|
||||||
testing.py
|
testing.py
|
||||||
/databases/
|
/databases/
|
||||||
|
.venv
|
||||||
|
|
||||||
.env
|
.env
|
||||||
@@ -140,8 +140,8 @@
|
|||||||
<div class="info-card">
|
<div class="info-card">
|
||||||
<h3>Account Status</h3>
|
<h3>Account Status</h3>
|
||||||
<p><strong>Status:</strong> <span style="color: #28a745;">Active</span></p>
|
<p><strong>Status:</strong> <span style="color: #28a745;">Active</span></p>
|
||||||
<p><strong>Created:</strong> {{ user.created_at[:19] if user.created_at else 'Unknown' }}</p>
|
<p><strong>Created:</strong> {{ user.created_at.strftime('%Y-%m-%d %H:%M:%S') if user.created_at else 'Unknown' }}</p>
|
||||||
<p><strong>Last Updated:</strong> {{ user.updated_at[:19] if user.updated_at else 'Unknown' }}</p>
|
<p><strong>Last Updated:</strong> {{ user.updated_at.strftime('%Y-%m-%d %H:%M:%S') if user.updated_at else 'Unknown' }}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
flask
|
flask
|
||||||
|
python-dotenv
|
||||||
Reference in New Issue
Block a user