chore: Merge branch 'feat/rfc' into rfc_htmlized
This commit is contained in:
commit
a307e0616c
|
@ -28,7 +28,7 @@
|
|||
<td class="edit"></td>
|
||||
<td>
|
||||
<a href="{% url "ietf.doc.views_doc.document_main" name=conflictdoc.name %}">
|
||||
{% if conflictdoc.get_state_slug == 'rfc' %}{{ conflictdoc.name|prettystdname }}{% else %}{{ conflictdoc.name }}-{{ conflictdoc.rev }}{% endif %}</a>
|
||||
{% if conflictdoc.type_id == 'rfc' %}{{ conflictdoc.name|prettystdname }}{% else %}{{ conflictdoc.name }}-{{ conflictdoc.rev }}{% endif %}</a>
|
||||
<span class="badge rounded-pill text-bg-info">{{ conflictdoc.stream }} stream</span>
|
||||
{% if snapshot %}<span class="badge rounded-pill text-bg-warning">Snapshot</span>{% endif %}
|
||||
</td>
|
||||
|
|
|
@ -13,11 +13,11 @@
|
|||
title="Document changes"
|
||||
href="/feed/document-changes/{{ name }}/">
|
||||
<meta name="description"
|
||||
content="{{ doc.title }} {% if doc.get_state_slug == 'rfc' and not snapshot %}(RFC {{ rfc_number }}{% if published %}, {{ doc.pub_date|date:'F Y' }}{% endif %}{% if obsoleted_by %}; obsoleted by {% for rel in obsoleted_by %}{{ rel.source.name|prettystdname}}{% if not forloop.last%}, {% endif %}{% endfor %}{% endif %}){% endif %}">
|
||||
content="{{ doc.title }} {% if doc.type_id == 'rfc' and not snapshot %}(RFC {{ rfc_number }}{% if published %}, {{ doc.pub_date|date:'F Y' }}{% endif %}{% if obsoleted_by %}; obsoleted by {% for rel in obsoleted_by %}{{ rel.source.name|prettystdname}}{% if not forloop.last%}, {% endif %}{% endfor %}{% endif %}){% endif %}">
|
||||
{% endblock %}
|
||||
{% block morecss %}.inline { display: inline; }{% endblock %}
|
||||
{% block title %}
|
||||
{% if doc.get_state_slug == "rfc" and not snapshot %}
|
||||
{% if doc.type_id == "rfc" and not snapshot %}
|
||||
RFC {{ rfc_number }} - {{ doc.title }}
|
||||
{% else %}
|
||||
{{ name }}-{{ doc.rev }} - {{ doc.title }}
|
||||
|
@ -31,7 +31,7 @@
|
|||
{% if doc.rev != latest_rev %}
|
||||
<div class="alert alert-warning my-3">The information below is for an old version of the document.</div>
|
||||
{% else %}
|
||||
{% if doc.get_state_slug == "rfc" and snapshot %}
|
||||
{% if doc.type_id == "rfc" and snapshot %}
|
||||
<div class="alert alert-warning my-3">
|
||||
The information below is for an old version of the document that is already published as an RFC.
|
||||
</div>
|
||||
|
@ -764,10 +764,10 @@
|
|||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
{% if doc.get_state_slug == "active" or doc.get_state_slug == "rfc" %}
|
||||
{% if doc.get_state_slug == "active" or doc.type_id == "rfc" %}
|
||||
<div class="card mt-5">
|
||||
<div class="card-header">
|
||||
{% if doc.get_state_slug == "rfc" and not snapshot %}
|
||||
{% if doc.type_id == "rfc" and not snapshot %}
|
||||
RFC {{ rfc_number }}
|
||||
{% else %}
|
||||
{{ name }}-{{ doc.rev }}
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
{% if label != skip_format %}
|
||||
<a class="btn btn-primary btn-sm"
|
||||
{% if label == 'pdf' or label == 'pdfized' %}
|
||||
download="{% if not snapshot and doc.get_state_slug == 'rfc' %}rfc{{ doc.rfc_number }}{% else %}{{ doc.name }}-{{ doc.rev }}{% endif %}.pdf"
|
||||
download="{% if not snapshot and doc.type_id == 'rfc' %}rfc{{ doc.rfc_number }}{% else %}{{ doc.name }}-{{ doc.rev }}{% endif %}.pdf"
|
||||
{% comment %}
|
||||
TODO: determine if we want bibtex to jiust download
|
||||
{% elif label == 'bibtex' %}
|
||||
download="{% if not snapshot and doc.get_state_slug == 'rfc' %}rfc{{ doc.rfc_number }}{% else %}{{ doc.name }}-{{ doc.rev }}{% endif %}.bib"
|
||||
download="{% if not snapshot and doc.type_id == 'rfc' %}rfc{{ doc.rfc_number }}{% else %}{{ doc.name }}-{{ doc.rev }}{% endif %}.bib"
|
||||
{% endcomment %}
|
||||
{% endif %}
|
||||
{% if label != 'htmlized' %}target="_blank"{% endif %}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{% load static %}
|
||||
{% load ietf_filters %}
|
||||
{% origin %}
|
||||
<meta property="og:title" content="{% if doc.get_state_slug == 'rfc' and not snapshot %}RFC {{ rfc_number }}: {% endif %}{{ doc.title }}">
|
||||
<meta property="og:title" content="{% if doc.type_id == 'rfc' and not snapshot %}RFC {{ rfc_number }}: {% endif %}{{ doc.title }}">
|
||||
<meta property="og:url" content="{{ settings.IDTRACKER_BASE_URL }}{{ request.path }}">
|
||||
<link rel="canonical" href="{{ settings.IDTRACKER_BASE_URL }}{{ request.path }}">
|
||||
<meta property="og:site_name" content="IETF Datatracker">
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{% load ietf_filters ballot_icon person_filters %}
|
||||
<td class="status bg-transparent">
|
||||
<div class="float-end ms-1 mb-1" id="ballot-icon-{{ doc.name }}">{% ballot_icon doc %}</div>
|
||||
{% if not doc.get_state_slug == "rfc" %}
|
||||
{% if not doc.type_id == "rfc" %}
|
||||
{% if '::' in doc.friendly_state %}
|
||||
{{ doc.friendly_state|safe }}
|
||||
{% else %}
|
||||
|
|
Loading…
Reference in a new issue