summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2020-10-29 14:59:13 +0100
committerRoberto Hueso Gómez <rhueso@soleta.eu>2020-10-29 15:03:35 +0100
commitc08aca92196cdd8df4c8d81da71e248b407f5bb2 (patch)
treeaa61c3524b58a0b50886a92cf4fe6eca36ba822b /ogcp/templates/actions
parenta8d7494ab9601d2ea4fb2065018580fb2a1c95b3 (diff)
Add software action
This action lists every piece of software installed in an OS from a client. This action can handle listing the software from the DB as well as updating that DB with the latest client information.
Diffstat (limited to 'ogcp/templates/actions')
-rw-r--r--ogcp/templates/actions/software.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/ogcp/templates/actions/software.html b/ogcp/templates/actions/software.html
new file mode 100644
index 0000000..713f89b
--- /dev/null
+++ b/ogcp/templates/actions/software.html
@@ -0,0 +1,11 @@
+{% extends 'base.html' %}
+{% import "bootstrap/wtf.html" as wtf %}
+
+{% block content %}
+
+{{ wtf.quick_form(form,
+ action=url_for('action_software'),
+ method='post',
+ button_map={'view': 'primary', 'update': 'primary'}) }}
+
+{% endblock %}