Initial commit of docker flask.
This commit is contained in:
17
templates/container.html
Normal file
17
templates/container.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{% extends "layout.html" %}
|
||||
{% block body %}
|
||||
|
||||
<h1><a href="/">Dashboard</a> » {{ client_name }} » <a href="/{{ client_name }}/containers">Containers</a> » {{ container.name }}</h1>
|
||||
|
||||
<form action="{{ url_for('rename_container', client_name=client_name) }}" method="post">
|
||||
<p><input type="text" name="name" size="60" value="{{ container.name }}"><!--
|
||||
--><input type="hidden" name="short_id" value="{{ container.short_id }}"><!--
|
||||
--><input type="submit" value="rename">
|
||||
</form>
|
||||
|
||||
<h2>Details</h2>
|
||||
<pre>
|
||||
{{ container.attrs|pprint }}
|
||||
|
||||
</pre>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user