flask-python-helm/templates/chartRevisionList.html
2020-12-18 13:37:21 +08:00

29 lines
1.0 KiB
HTML

<doctype html>
<head>
<title>List of deployed chart revisions</title>
<link rel="stylesheet" media="screen" href ="/static/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/css/bootstrap-theme.min.css">
<meta name="viewport" content = "width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
</head>
<body>
<p>
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul class=flashes>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
</p>
<table class="table table-bordered">
{{ table }}
</table>
<a class="btn btn-primary" href="/" role="button">Home</a>
<br>
<a class="btn btn-primary" href="/oauth2/sign_out" role="button">Log Off</a>
</body>