15 lines
368 B
HTML
15 lines
368 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% block title %}IPR search{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
{% include "ipr/search_form.html" %}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script type="text/javascript" src="{% static 'ietf/js/ipr-search.js' %}"></script>
|
|
{% endblock %}
|