This makes this app much more meaningful. For this feature, a new database table is added. More complicated logics are also needed, for example, we use hash(user ID + timestamp + note contant) as the unique id of each note (it's necessary when we try to delete a note)
6 lines
161 B
HTML
6 lines
161 B
HTML
{% extends "layout.html" %}
|
|
{% block page_title %}Forbidden(403){% endblock %}
|
|
{% block body %}
|
|
{{ super() }}
|
|
This operation is forbidden.
|
|
{% endblock %} |