diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-10-21 13:06:06 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-10-28 11:29:03 +0200 |
commit | 20a94dbc3e3e6e36655982a5569a6d7e4d0abedd (patch) | |
tree | e0bf2592cb5077aa98dc2cd33f1d3dd7a41425bf /ogcp/templates/actions/legacy | |
parent | c493d243496e80016845aa16cfa59773cb75be71 (diff) |
Add legacy log
Future patches will deprecate this log functionality in favour of more
robust solutions.
Diffstat (limited to 'ogcp/templates/actions/legacy')
-rw-r--r-- | ogcp/templates/actions/legacy/log.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ogcp/templates/actions/legacy/log.html b/ogcp/templates/actions/legacy/log.html new file mode 100644 index 0000000..08d3328 --- /dev/null +++ b/ogcp/templates/actions/legacy/log.html @@ -0,0 +1,10 @@ +{% extends 'base.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% block content %} + +<h1 class="m-5">{{_('Client log')}}</h1> + +<pre>{{ log }}</pre> + +{% endblock %} |