summaryrefslogtreecommitdiffstats
path: root/inventar/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'inventar/templates/base.html')
-rw-r--r--inventar/templates/base.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/inventar/templates/base.html b/inventar/templates/base.html
new file mode 100644
index 0000000..c61e012
--- /dev/null
+++ b/inventar/templates/base.html
@@ -0,0 +1,33 @@
+{% load i18n %}
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>{% block title %}KtT Inventory System{% endblock %}</title>
+ <link rel="stylesheet" href="/static/design.css" type="text/css" />
+ </head>
+ <body>
+ <div class="header">
+ <h1>{% block pagetitle %}KtT Inventory System{% endblock %}</h1>
+ </div>
+
+ <div class="body">
+ <div class="menu">
+ <ul>
+ <li><a href="{% url home %}"><img src="/static/home.svg" width="24" height="24" /> {% trans "Home" %}</a></li>
+ <li><a href="{% url admin:index %}"><img src="/static/admin.svg" width="24" height="24" /> {% trans "Admin Area" %}</a></li>
+ <li><br></li>
+ <li>{% trans "Search Item" %}:
+ <ul>
+ <li><form action="?" target="_self" id="itemchooser" onsubmit="location.assign('/item/'+document.forms['itemchooser']['id'].value+'/'); return false;"><input maxlength="4" name="id" type="text" title="{% trans "Get Item by ID" %}"/></form></li>
+ <li><form action="?" target="_self" id="itemsearch" onsubmit="location.assign('/search/'+document.forms['itemsearch']['term'].value+'/'); return false;"><input name="term" type="text" title="{% trans "Search Item by Name and Description" %}"/></form></li>
+ </ul>
+ </li>
+ </ul>
+ </div>
+
+ <div class="content">
+ {% block content %}{% endblock %}
+ </div>
+ </div>
+ </body>
+</html>