* feat: Capture that IPR disclosures are removed under the Objectively False IPR Disclosure Policy (#6088) * chore: Move PUBLISH_IPR_STATES from settings_local to settings * fix: Add migration for removed_objfalse in IprEventTypeName * fix: De-conflict migration * fix: De-conflict migration * style: Move PUBLISH_IPR_STATES ahead of not-production block
15 lines
539 B
HTML
15 lines
539 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015-2023, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% block title %}{{ ipr.title }}{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{{ ipr.title }}</h1>
|
|
<p class="alert alert-info my-3">
|
|
{% if ipr.state.slug == "removed" %}
|
|
This IPR disclosure was removed at the submitter's request.
|
|
{% elif ipr.state.slug == "removed_objfalse" %}
|
|
This IPR disclosure was removed as objectively false.
|
|
{% endif %}
|
|
</p>
|
|
{% endblock %} |