26 lines
734 B
HTML
26 lines
734 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Storage</title>
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<head>
|
|
<body>
|
|
<form action="/storage/{{stash_name}}/take" method="POST">
|
|
<div>
|
|
<!-- TODO: Include item.html -->
|
|
{% for db_id, item in storage_items.items() %}
|
|
<div class="storage-item-entry">
|
|
<input type="checkbox" name="item_{{db_id}}" id="item_{{db_id}}" value="take" />
|
|
<label for="item_{{db_id}}">{{item.name}} ({{db_id}})</label>
|
|
<div class="item-hover">
|
|
{% include "item.html" %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<input type="submit" value="Take items">
|
|
</form>
|
|
</body>
|
|
</html>
|