view gpp/templates/weblinks/base.html @ 11:cc8eb028def1

Update jquery-ui and theme version that is hosted on google. In preparation for having jquery on every page (?), make it so that the autocomplete plug is using the 'global' jquery, and not the one that came with it. It seems to work okay with jquery 1.3.2.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Apr 2009 02:35:35 +0000
parents dbd703f7d63a
children 884839ddbfde
line wrap: on
line source
{% extends 'base.html' %}
{% block custom_css %}
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/weblinks.css" />
{% block weblinks_css %}{% endblock %}
{% endblock %}
{% block content %}
<h2>Web Links</h2>

<div class="weblinks-search">
<form action="{% url weblinks-search page=1 %}" method="post">
   <p>{{ search_form.text }} <input type="submit" value="Search" /></p>
</form>
</div>

<ul class="app-menu">
<li><a href="{% url weblinks.views.link_index %}">Categories</a></li>
<li><a href="{% url weblinks.views.new_links %}">New</a></li>
<li><a href="{% url weblinks.views.popular_links %}">Popular</a></li>
<li><a href="{% url weblinks.views.random_link %}" target="_blank">Random</a></li>
{% if user.is_authenticated %}
<li><a href="{% url weblinks.views.add_link %}">Add</a></li>
{% endif %}
</ul>

<div class="weblinks-content">
   {% block weblinks_content %}
   {% endblock %}
</div>
{% endblock %}