24 lines
598 B
HTML
24 lines
598 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Shared Stash</title>
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<head>
|
|
<body>
|
|
<form action="/stash/{{stash_name}}/store" method="POST">
|
|
{% for tab in stash.tabs %}
|
|
{% set tabloop = loop %}
|
|
<h2>Tab {{tabloop.index}}</h2>
|
|
<div class="stash-tab">
|
|
{% for item in tab.items %}
|
|
{% set itemloop = loop %}
|
|
{% include "item.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
<input type="submit" value="Remove items">
|
|
</form>
|
|
</body>
|
|
</html>
|