12 lines
348 B
HTML
12 lines
348 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 src="{% static 'ietf/js/ipr-search.js' %}"></script>
|
|
{% endblock %} |