FreedomBox/plinth/templates/help-menu.html
Sunil Mohan Adapa 95ecf36152
ui: Rename data- attributes to data-bs- for Bootstrap 5
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2024-12-12 12:48:54 +02:00

52 lines
1.6 KiB
HTML

{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load i18n %}
<li id="id_help_menu" class="dropdown nav-item">
<a href="{% url 'help:index' %}" title="{% trans "Help" %}"
class="nav-link dropdown-toggle" data-bs-toggle="dropdown"
role="button" aria-expanded="false" aria-haspopup="true"
id="id_help_menu_link">
<span class="fa fa-question-circle nav-icon"></span>
<span class="nav-text d-md-none">
{% trans "Help" %}
</span>
</a>
<ul class="dropdown-menu" role="menu" aria-labelledby="id_help_menu_link">
<li>
<a href="{% url 'help:manual' %}" class="dropdown-item"
title="{% trans "Manual" context "User guide" %}">
{% trans "Manual" context "User guide" %}
</a>
</li>
<li role="separator" class="dropdown-divider d-none d-md-block"></li>
<li>
<a href="{% url 'help:support' %}" class="dropdown-item"
title="{% trans "Get Support" %}">
{% trans "Get Support" %}
</a>
</li>
<li>
<a href="{% url 'help:feedback' %}" class="dropdown-item"
title="{% trans "Submit Feedback" %}">
{% trans "Submit Feedback" %}
</a>
</li>
<li>
<a href="{% url 'help:contribute' %}" class="dropdown-item"
title="{% trans "Contribute" %}">
{% trans "Contribute" %}
</a>
</li>
<li role="separator" class="dropdown-divider d-none d-md-block"></li>
<li>
<a href="{% url 'help:about' %}" class="dropdown-item"
title="{% trans "About" %}">
{% trans "About" %}
</a>
</li>
</ul>
</li>