diff --git a/python/web/media/styles/scaffold.css b/python/web/media/styles/scaffold.css
index 9614667..c05fad0 100644
--- a/python/web/media/styles/scaffold.css
+++ b/python/web/media/styles/scaffold.css
@@ -38,11 +38,13 @@ h2 {
color: #3399CC;
font-family: verdana, sans-serif, arial, courier new;
text-align: left;
+ text-shadow: 1px 1px 1px #44A4BD;
}
h3 {
color: #44A4BD;
font-family: verdana, sans-serif, arial, courier new;
- text-align: left
+ text-align: left;
+ text-shadow: 1px 1px 1px #3399CC;
}
h4 {
color: #3399CC;
@@ -79,6 +81,10 @@ img.aligncenter {
text-align: center;
}
+.input {
+ width: 320px;
+}
+
.img {
float: left;
display: inline;
diff --git a/python/web/templates/base/main.html b/python/web/templates/base/main.html
index d1fe0d9..b88d0e9 100644
--- a/python/web/templates/base/main.html
+++ b/python/web/templates/base/main.html
@@ -1,24 +1,25 @@
-
-Worblehat 0.1: {% block title %}{% endblock %}
-
-
+
+ Worblehat 0.1: {% block title %}{% endblock %}
+
+
-{% block meta %}
-{% endblock %}
-
-
- Worblehat
-
-{% block content %}
-{% endblock %}
-
-
-
-
-
-
+ {% block meta %}
+ {% endblock %}
+
+
+ Worblehat
+
+ {% block content %}
+ {% endblock %}
+
+
+
+
+
+
+
diff --git a/python/web/templates/category/view.html b/python/web/templates/category/view.html
index 0991f56..636508b 100644
--- a/python/web/templates/category/view.html
+++ b/python/web/templates/category/view.html
@@ -1,20 +1,21 @@
{% extends "base/main.html" %}
{%block title%}
-Worblehat 0.1: Kategori: {{ category }}
+{{ category }}
{% endblock %}
{% block content %}
-{{ category }}
+{{ category }}
{% if not book_list %}
Det finnes ingen bøker i denne kategorien.
{% else %}
-Følgende bøker finnes i denne kategorien:
+
+Bøker:
{% endif %}
diff --git a/python/web/templates/map/index.html b/python/web/templates/map/index.html
index b8a3545..749c6c0 100644
--- a/python/web/templates/map/index.html
+++ b/python/web/templates/map/index.html
@@ -1,11 +1,11 @@
{% extends "base/main.html" %}
{%block title%}
-Worblehat 0.1: Fresh, detailed, life-saving maps!
+Ferske, detaljerte og livsreddende kart!
{% endblock %}
{% block content %}
-Hyller:
+Hyller
{% for shelf_name in shelves %}
- {{ shelf_name }}
diff --git a/python/web/templates/map/view.html b/python/web/templates/map/view.html
index 7ec2497..acf7637 100644
--- a/python/web/templates/map/view.html
+++ b/python/web/templates/map/view.html
@@ -1,10 +1,11 @@
{% extends "base/main.html" %}
-{%block title%}
-Worblehat 0.1: Hylle {{ shelf_name }}
+{% block title %}
+Hylle {{ shelf_name }}
{% endblock %}
{% block content %}
+Hylle {{ shelf_name }}
{% for row in shelf %}
diff --git a/python/web/templates/search/search.html b/python/web/templates/search/search.html
index 0bf4492..6ca9458 100644
--- a/python/web/templates/search/search.html
+++ b/python/web/templates/search/search.html
@@ -13,12 +13,20 @@ Du søkte på {{ search_string }}.
{% for person in people %}
{{ person.first_name }} {{ person.last_name }}
{% endfor %}
- {% endif %}
+ {% endif %}
{% if books %}
Bøker:
{% for book in books %}
{{ book.title }}
{% endfor %}
+
+ {% endif %}
+ {% if categories %}
+ Kategorier:
+ {% for category in categories %}
+ {{ category.name }}
+ {% endfor %}
+
{% endif %}
{% endblock %}