aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/templates
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/templates')
-rw-r--r--bn_django/templates/base.html2
-rw-r--r--bn_django/templates/search.html10
2 files changed, 11 insertions, 1 deletions
diff --git a/bn_django/templates/base.html b/bn_django/templates/base.html
index 7349669..100ef4a 100644
--- a/bn_django/templates/base.html
+++ b/bn_django/templates/base.html
@@ -21,7 +21,7 @@
</div>
<div class="content" id="main_title">
<div class="right_stuff">
-<form name="search">
+<form name="search" action="/search">
<br/>
<input class="search_box" type="text" size="21" value="&nbsp;search!"
name="search_text" id="search_text"
diff --git a/bn_django/templates/search.html b/bn_django/templates/search.html
new file mode 100644
index 0000000..246bd74
--- /dev/null
+++ b/bn_django/templates/search.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+
+{% block title %}Search?{% endblock %}
+
+{% block right_stuff %}
+{% endblock %}
+
+{% block content %}
+<p />Seach isn't implemented yet!
+{% endblock %}