Projects/worblehat-old
Projects
/
worblehat-old
Archived
12
0
Fork 0

Mer pirking på #12. Nå er det linker og søketing på toppen av sida, og linken til kategorier på bøkene fører faktisk til kategorien.

This commit is contained in:
Tiril Anette Langfeldt Rødland 2011-03-06 21:24:58 +00:00
parent 8d1cdba906
commit ad6e4a570b
4 changed files with 28 additions and 12 deletions

View File

@ -76,6 +76,20 @@ img.aligncenter {
text-shadow: 1px 1px 1px #44A4BD; text-shadow: 1px 1px 1px #44A4BD;
} }
.shelf {
color: #27606E;
font-family: verdana, sans-serif, arial, courier new;
text-align: center;
}
.caption {
color: #27606E;
font-family: verdana, sans-serif, arial, courier new;
text-align: center;
font-weight: bolder;
text-shadow: 1px 1px 1px #44A4BD;
}
.links { .links {
float: center; float: center;
color: #27606E; color: #27606E;
@ -99,7 +113,7 @@ img.aligncenter {
} }
.input { .input {
width: 320px; width: 300px;
} }
.heading { .heading {

View File

@ -15,18 +15,14 @@
<a href="/kart/" class="link">Hyllekart</a> | <a href="/kart/" class="link">Hyllekart</a> |
<a href="/kategori/" class="link">Kategorier</a> | <a href="/kategori/" class="link">Kategorier</a> |
<a href="/bok/" class="link">Bøker</a> | <a href="/bok/" class="link">Bøker</a> |
<a href="/person/" class="link">Forfattere og andre personer</a> <br/> <a href="/person/" class="link">Forfattere og andre personer</a>
</div>
<hr/>
{% block content %}
{% endblock %}
<br/><br/>
<hr/>
<div class="field">
<form action="/let/" method="get"> <form action="/let/" method="get">
<input type="search" name="searchterm" class="input" placeholder="Søk etter bøker, forfattere eller kategorier" autofocus> <input type="search" name="searchterm" class="input" placeholder="Søk etter bøker, forfattere eller kategorier" autofocus>
<input type="submit" value="Søk!"> <input type="submit" value="Søk!">
</form> </form>
</div> </div>
<hr/>
{% block content %}
{% endblock %}
</body> </body>
</html> </html>

View File

@ -21,7 +21,7 @@
<br> <br>
{% endfor %} {% endfor %}
{% if book.category %} {% if book.category %}
<span class="key">Kategori:</span> {{ book.category }} <br> <span class="key">Kategori:</span> <a href="/kategori/{{ book.category.id }}">{{ book.category }}</a> <br>
{% endif %} {% endif %}
{% if book.shelves %} {% if book.shelves %}
<span class="key">Hylle:</span> {{ book.shelves }} <br> <span class="key">Hylle:</span> {{ book.shelves }} <br>

View File

@ -7,7 +7,9 @@ Hyllekart
{% block content %} {% block content %}
{% for shelf in shelf_lists %} {% for shelf in shelf_lists %}
<table border="1"> <span class="img">
<table border="1" class="shelf" >
<caption class="caption">Hylle {% if forloop.last %}B{% else %}A{% endif %}</caption>
{% for row in shelf.1 %} {% for row in shelf.1 %}
<tr> <tr>
{% for column in row %} {% for column in row %}
@ -22,7 +24,11 @@ Hyllekart
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
<li><a href="/kart/{{ shelf_name }}">{{ shelf_name }}</a></li> </span>
<!---<li><a href="/kart/{{ shelf_name }}">{{ shelf_name }}</a></li>---!>
{% endfor %} {% endfor %}
<br/>
<br/>
<br/>
{% endblock %} {% endblock %}