Revised search templates, now extending the base template.
- Legacy-Id: 578
This commit is contained in:
parent
6dbe4eda4d
commit
ec8a75dfb5
|
@ -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 %}
|
||||
|
|
18
ietf/templates/ipr/search_result.html
Normal file
18
ietf/templates/ipr/search_result.html
Normal 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 %}
|
||||
|
Loading…
Reference in a new issue