Files
inventory-app/inventory-app/templates/inventory_add_slug.html
2025-05-31 01:44:13 +03:00

24 lines
674 B
HTML

{% extends 'base.html' %}
{% block content %}
<div class="container">
<h3>New sticker: {{ slug }}</h3>
<p>
You are adding a new sticker to the collection.
It can be assigned to an existing item or a new item can be created.
</p>
<h3>Actions</h3>
<div class="row">
<a href="/m/inventory/add-by-slug/{{ slug }}" class="waves-effect waves-light btn">Add new item</a>
</div>
<div class="row">
<a href="/m/inventory/assign-slug/{{ slug }}" class="waves-effect waves-light btn">Assign to existing item</a>
</div>
<div class="row">
<a href="/m/inventory/clone-with-slug/{{ slug }}" class="waves-effect waves-light btn">Clone existing item</a>
</div>
</div>
{% endblock %}