diff --git a/container/templates/container/container_detail.html b/container/templates/container/container_detail.html
index ce3ba4b..8f9c3e2 100644
--- a/container/templates/container/container_detail.html
+++ b/container/templates/container/container_detail.html
@@ -20,7 +20,7 @@
diff --git a/container/templates/container/container_list.html b/container/templates/container/container_list.html
index d3f464d..cc0d397 100644
--- a/container/templates/container/container_list.html
+++ b/container/templates/container/container_list.html
@@ -29,7 +29,11 @@
{{ container.color }} |
{{ container.description }} |
{{ container.changed_ts | date:'H:i:s d.m.Y' }} |
-
Delete |
+
+ Delete
+ View
+ Label
+ |
{% endfor %}
diff --git a/container/templates/container/container_print_label.html b/container/templates/container/container_print_label.html
new file mode 100644
index 0000000..d3c29eb
--- /dev/null
+++ b/container/templates/container/container_print_label.html
@@ -0,0 +1,22 @@
+{% extends "base.html" %}
+{% load static %}
+
+{% block title %}Container: {{ container.named_id }}{% endblock %}
+
+{% block content %}
+===== Print Label Content =====
+
+
+
+
+
+ Label created for container {{ container.named_id }} of type {{ container.container_type.named_id }}
+
+
+
+
+
+
+
+
+{% endblock content %}
\ No newline at end of file
diff --git a/container/urls.py b/container/urls.py
index ef56232..b36ec76 100644
--- a/container/urls.py
+++ b/container/urls.py
@@ -1,13 +1,15 @@
from django.urls import path
-from container.views import ContainerListView, ContainerUpdateView, ContainerCreateView, ContainerDetailView, ContainerDeleteView
+from container.views import ContainerListView, ContainerUpdateView, ContainerCreateView, ContainerDetailView, ContainerDeleteView, ContainerPrintLabelView
from container.views import ContainerTypeListView, ContainerTypeDetailView, ContainerTypeCreateView, ContainerTypeUpdateView, ContainerTypeDeleteView
app_name = 'container'
urlpatterns = [
path('', ContainerListView.as_view(), name='list'),
+ path('