Add note scaffold

This commit is contained in:
2026-07-26 14:45:55 +03:00
parent e376ed950b
commit d640ce35b6
20 changed files with 604 additions and 8 deletions
+26
View File
@@ -0,0 +1,26 @@
{% extends "base.html" %}
{% block title %}
View note: {{ item.id }}
{% endblock title %}
{% block page_title %}
View note: {{ item.id }}
{% endblock page_title %}
{% block content %}
<div class="mb-10">
<div>
<label><b>{{"user_id" | capitalize }}:</b> {{item.user_id}}</label>
</div>
<div>
<label><b>{{"title" | capitalize }}:</b> {{item.title}}</label>
</div>
<div>
<label><b>{{"content" | capitalize }}:</b> {{item.content}}</label>
</div>
<br />
<a href="/notes">Back to notes</a>
</div>
{% endblock content %}