[A11y] replace b with strong for better semantics (#5086)

This commit is contained in:
Richard Schreiber
2025-05-12 16:43:08 +02:00
committed by GitHub
parent cf51c879c7
commit 1f2a0278c0
10 changed files with 12 additions and 12 deletions

View File

@@ -79,7 +79,7 @@
<div class="panel panel-default">
<div class="panel-heading">
{% endif %}
<h3 class="panel-title"><b>
<h3 class="panel-title"><strong>
{% if subevent_list_foldable %}
{% if show_cart %}
{% trans "Add tickets for a different date" %}
@@ -88,7 +88,7 @@
{% endif %}
{% else %}
{% trans "Choose date to book a ticket" %}
{% endif %}</b>
{% endif %}</strong>
</h3>
{% if subevent_list_foldable %}
</summary>

View File

@@ -7,7 +7,7 @@
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
{% icon "address-card-o" %} <b>{% trans "Delete address" %}</b>
{% icon "address-card-o" %} <strong>{% trans "Delete address" %}</strong>
</h3>
</div>
<div class="panel-body account-addresses">

View File

@@ -8,7 +8,7 @@
<div class="panel-heading">
<h3 class="panel-title">
{% icon "address-card-o" %}
<b>{% trans "Addresses" %}</b> ({{ page_obj.paginator.count }})
<strong>{% trans "Addresses" %}</strong> ({{ page_obj.paginator.count }})
</h3>
</div>
<div class="panel-body">

View File

@@ -13,7 +13,7 @@
{% else %}
{% icon "id-badge" %}
{% endif %}
<b>{% trans "Your membership" %}</b>
<strong>{% trans "Your membership" %}</strong>
{% if membership.testmode %}
<span class="h6">
{% textbubble "warning" %}

View File

@@ -9,7 +9,7 @@
<div class="panel-heading">
<h3 class="panel-title">
{% icon "id-badge" %}
<b>{% trans "Memberships" %}</b> ({{ page_obj.paginator.count }})
<strong>{% trans "Memberships" %}</strong> ({{ page_obj.paginator.count }})
</h3>
</div>
<div class="panel-body">

View File

@@ -10,7 +10,7 @@
<div class="panel-heading">
<h3 class="panel-title">
{% icon "shopping-cart" %}
<b>{% trans "Orders" %}</b> ({{ page_obj.paginator.count }})
<strong>{% trans "Orders" %}</strong> ({{ page_obj.paginator.count }})
</h3>
</div>
<div class="panel-body">

View File

@@ -7,7 +7,7 @@
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
{% icon "user" %} <b>{% trans "Delete profile" %}</b>
{% icon "user" %} <strong>{% trans "Delete profile" %}</strong>
</h3>
</div>
<div class="panel-body">

View File

@@ -8,7 +8,7 @@
<div class="panel-heading">
<h3 class="panel-title">
{% icon "users" %}
<b>{% trans "Attendee profiles" %}</b> ({{ page_obj.paginator.count }})
<strong>{% trans "Attendee profiles" %}</strong> ({{ page_obj.paginator.count }})
</h3>
</div>
<div class="panel-body">

View File

@@ -34,13 +34,13 @@
<div class="panel panel-default">
<div class="panel-heading">
<h2 class="panel-title">
<b>
<strong>
{% if "old" in request.GET %}
{% trans "Past events" %}
{% else %}
{% trans "Upcoming events" %}
{% endif %}
</b>
</strong>
</h2>
</div>
{% if filter_form.fields %}