diff --git a/labellabor/urls.py b/labellabor/urls.py
index eb9690b..c2d519c 100644
--- a/labellabor/urls.py
+++ b/labellabor/urls.py
@@ -20,7 +20,8 @@ from .views import (
LabelbaseUpdateView,
FaqView,
AboutView,
- EncryptionView
+ EncryptionView,
+ InteroperationalView,
)
from importer.views import upload_labels
from exporter.views import stream_labels_as_jsonl
@@ -146,6 +147,11 @@ urlpatterns = [
EncryptionView.as_view(),
name="encryption"
),
+ path(
+ "interoperational",
+ InteroperationalView.as_view(),
+ name="interoperational"
+ ),
path(
"",
HomeView.as_view(),
diff --git a/labellabor/views.py b/labellabor/views.py
index 8236382..93d4292 100644
--- a/labellabor/views.py
+++ b/labellabor/views.py
@@ -23,6 +23,9 @@ class AboutView(TemplateView):
class EncryptionView(TemplateView):
template_name = "encryption.html"
+class InteroperationalView(TemplateView):
+ template_name = "interoperational.html"
+
class HomeView(TemplateView):
template_name = "home.html"
diff --git a/static/Choices.png b/static/Choices.png
new file mode 100644
index 0000000..f9f4be0
Binary files /dev/null and b/static/Choices.png differ
diff --git a/templates/home.html b/templates/home.html
index 64e84db..5e180d9 100644
--- a/templates/home.html
+++ b/templates/home.html
@@ -53,6 +53,23 @@
+
+
+
+
+
+
diff --git a/templates/interoperational.html b/templates/interoperational.html
new file mode 100644
index 0000000..1a171c5
--- /dev/null
+++ b/templates/interoperational.html
@@ -0,0 +1,65 @@
+{% extends "_base.html" %}
+{% load i18n %}
+
+{% block title %}Encryption{% endblock %}
+{% block nav_home %}active{% endblock %}
+
+{% block content %}
+
+
+
Lbelbase
+ All your labels in one place.
+
+
+
+
+
+
+{% endblock %}