18 lines
393 B
HTML
18 lines
393 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% block title %}IPR search result error{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
|
|
<h1>IPR search result error</h1>
|
|
|
|
<div class="alert alert-danger">
|
|
<p>Your request was not processed due to the following error(s):</p>
|
|
<p><i>{{ error }}</i></p>
|
|
</div>
|
|
|
|
{% endblock %}
|