Revised search templates, now extending the base template.

- Legacy-Id: 578
This commit is contained in:
Henrik Levkowetz 2007-06-21 11:41:20 +00:00
parent 6dbe4eda4d
commit ec8a75dfb5
2 changed files with 21 additions and 17 deletions

View file

@ -1,12 +1,6 @@
{% extends "ipr/search_result.html" %}
{% load ietf_filters %}
<html>
<head><title>IPR Search Engine </title></head>
<body>
<center>
<h2>IPR Disclosures</h2></center>
<hr width="100%">
<blockquote>
{% block search_result %}
<table cellpadding="1" cellspacing="0" border="0">
@ -47,12 +41,4 @@
{% endfor %}
</table>
<hr><br>
<a href="{% url ietf.ipr.views.search %}"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">IPR Search Main Page</a><br>
<a href="{% url ietf.ipr.views.list %}"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">IPR Disclosure Page</a>
<br>
</body></html>
{% endblock %}

View file

@ -0,0 +1,18 @@
{% extends "base.html"}
{% block doctype %}{% endblock %}
{% block content %}
<center>
<h2>IPR Disclosures</h2>
</center>
<hr>
<blockquote>
{% block search_result %}
{% endblock %}
<hr><br>
<a href="{% url ietf.ipr.search.search %}"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">IPR Search Main Page</a><br>
<a href="{% url ietf.ipr.views.showlist %}"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">IPR Disclosure Page</a>
<br>
</blockquote>
{% endblock %}