datatracker/ietf/templates/group/group_base.html
Lars Eggert 3a47871f5e
fix: More dark mode fixes (#6001)
* fix: More small dark mode fixes

* "badge rounded-pill bg-" -> "badge rounded-pill text-bg-"

This sets the text color correctly for more readable badges.

* Same for cards

* Fix tests
2023-07-20 13:48:52 -05:00

44 lines
1.8 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load ietf_filters static %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}{{ group.name }} ({{ group.acronym }}){% endblock %}
{% block content %}
{% origin %}
<h1>
{% if group.state_id == "dormant" or group.state_id == "conclude" %}
<span class="badge rounded-pill text-bg-warning float-end ms-3">Concluded {{ group.type.name }}</span>
{% endif %}
{% if group.state_id == "replaced" %}<span class="badge rounded-pill text-bg-warning float-end ms-3">Replaced {{ group.type.name }}</span>{% endif %}
{% if group.state_id == "proposed" %}<span class="badge rounded-pill text-bg-info float-end ms-3">Proposed {{ group.type.name }}</span>{% endif %}
{{ group.name }} ({{ group.acronym }})
</h1>
<ul class="nav nav-tabs my-3">
{% for name, url in menu_entries %}
<li class="nav-item">
<a class="nav-link {% if selected_menu_entry == name.lower %}active{% endif %}"
href="{{ url }}">{{ name }}</a>
</li>
{% endfor %}
</ul>
<div class="buttonlist">
{% block buttonlist %}
{% if menu_actions %}
{% for name, url in menu_actions %}
<a class="btn {% if name == "Request closing group" %}btn-warning{% else %}btn-primary{% endif %}"
href="{{ url }}">
{{ name }}
</a>
{% endfor %}
{% endif %}
{% endblock %}
</div>
{% block group_content %}{% endblock %}
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}