diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-09-03 14:51:15 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-09-03 14:51:15 +0200 |
commit | da9b2ea9c2ef37eb191ba0a9e78e62ce942dc912 (patch) | |
tree | 6e54487fc3ab2fb028402c8d84c06efe82caccc9 /ogcp/templates/actions | |
parent | d83e456daf20e070a3eee51d885166566177c369 (diff) |
Add image details action
This action is used to visualize the specific details of an image, as
its ID, name, size, etc.
Diffstat (limited to 'ogcp/templates/actions')
-rw-r--r-- | ogcp/templates/actions/image_details.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ogcp/templates/actions/image_details.html b/ogcp/templates/actions/image_details.html new file mode 100644 index 0000000..a4feb55 --- /dev/null +++ b/ogcp/templates/actions/image_details.html @@ -0,0 +1,13 @@ +{% extends 'base.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% block content %} + +<h1 class="m-5">{{_('Image details')}}</h1> + +{{ wtf.quick_form(form, + method='post', + button_map={'create': 'primary'}, + extra_classes="mx-5") }} + +{% endblock %} |