{# bs5ok #} {% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load static %} {% load ietf_filters %} {% load static %} {% block pagehead %} {% endblock %} {% block title %}IPR disclosures{% endblock %} {% block content %} {% origin %} {% include "ipr/search_form.html" %}

{% block search_header %}Patent owner/applicant search result{% endblock %}

{% block search_result %} {% if not iprs %}

{% block search_failed %}No IPR disclosures have been submitted by "{{ q }}".{% endblock %}

{% else %}

Total number of IPR disclosures found: {{ iprs|length }}.

{% block iprlist %} {% for ipr in iprs %} {% if user|has_role:"Secretariat" %} {% ifchanged %} {% endifchanged %} {% endif %} {% for item in ipr.updates.all %} {% if item != ipr %} {% endif %} {% endfor %} {% endfor %} {% endblock %}
Date ID Statement
{{ ipr.state.name }}
{% block intro_prefix %}IPR that was submitted by "{{ q }}" and{% endblock %} {% block related %} {% with ipr.iprdocrel_set.all as iprdocrels %} {% if not iprdocrels %} is not related to a specific IETF contribution. {% else %} is related to {% for item in iprdocrels %} {% if forloop.last and forloop.counter > 1 %}and{% endif %} {{ item.formatted_name|urlize_ietf_docs }} ("{{ item.document.document.title }}") {% if not forloop.last and forloop.counter > 1 %},{% endif %} {% endfor %} {% endif %} {% endwith %} {% endblock %} {% block intro_suffix %}{% endblock %}
{{ ipr.time|date:"Y-m-d" }} {{ ipr.id }} {{ ipr.title }}
{{ item.target.time|date:"Y-m-d" }} {{ item.target.id }} IPR disclosure #{{ ipr.id }}: {{ ipr.title }}
Updates: {{ item.target.title }}
{% endif %} {% endblock %}

Back

{% endblock %} {% block js %} {% endblock %}