diff options
Diffstat (limited to 'portal-gui/templates/myrpki/conf_list.html')
-rw-r--r-- | portal-gui/templates/myrpki/conf_list.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/portal-gui/templates/myrpki/conf_list.html b/portal-gui/templates/myrpki/conf_list.html new file mode 100644 index 00000000..4bb18114 --- /dev/null +++ b/portal-gui/templates/myrpki/conf_list.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} + +{% block content %} +<h1>Handle List</h1> +<p>Please select a handle.</p> + +<ul> +{% for c in conf_list %} +<li><a href="{{ select_url }}?handle={{ c.handle }}&next={{ next_url }}">{{ c.handle }}</a></li> +{% endfor %} +</ul> + +<!-- +<p><a href="/myrpki/conf/add?next={{ next_url }}">[create]</a> +--> + +{% endblock %} |