{% extends "layout.html" %}
{% block page_title %}Private Page{% endblock %}
{% block body %}
{{ super() }}
You can take notes here. Only yourself can access them. They will be removed when your account is removed.
Add Note
{% if notes %}
Your Notes
| Note ID |
Timestamp |
Note |
Action |
{% for note_id, timestamp, note, act in notes %}
| {{ note_id }} |
{{ timestamp }} |
{{ note }} |
Delete |
{% endfor %}
{% endif %}
Upload Image
{% if images %}
Your Images
| Image ID |
Timestamp |
Image Name |
Action |
{% for image_id, timestamp, image_name, act in images %}
| {{ image_id }} |
{{ timestamp }} |
{{ image_name }} |
Delete |
{% endfor %}
{% endif %}
{% endblock %}