* fix: document type badge#7475 * chore: PR feedback (naming) * fix: use type_id rather than str(type) for conditionals in templatetag * fix: remove debugging CSS inline style dashed border * fix: document type badge template tag passing context variables * fix: context vars to document_type_badge * fix: badge error logging --------- Co-authored-by: Robert Sparks <rjsparks@nostrum.com>
14 lines
386 B
HTML
14 lines
386 B
HTML
{% load origin %}
|
|
{% load static %}
|
|
{% load ietf_filters %}
|
|
{% load person_filters %}
|
|
{% origin %}
|
|
|
|
<span class="text-success">RFC
|
|
{% if not document_html %}
|
|
- {{ doc.std_level }}
|
|
{% else %}
|
|
<span class="badge rounded-pill badge-{% if not snapshot %}{{ doc|std_level_to_label_format }}{% else %}generic{% endif %}">{{ doc.std_level }}</span>
|
|
{% endif %}
|
|
</span>
|