Skip to content

Commit d4d88a8

Browse files
vedansh-5Sak1012Copilot
authored
fix for Match event name header font and size on Tickets and Common Dashboard to Talk Dashboard (#1459)
* matched fonts Signed-off-by: Vedansh Saini <[email protected]> * font Signed-off-by: Vedansh Saini <[email protected]> * Apply suggestion from @Copilot Co-authored-by: Copilot <[email protected]> * Add AI suggestions --------- Signed-off-by: Vedansh Saini <[email protected]> Co-authored-by: Srivatsav Auswin <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: Sak1012 <[email protected]>
1 parent fcfc6e7 commit d4d88a8

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

app/eventyay/control/templates/pretixcontrol/event/index.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,22 @@
44
{% load bootstrap3 %}
55
{% load static %}
66
{% load eventsignal %}
7+
78
{% block title %}{{ request.event.name }}{% endblock %}
89
{% block content %}
910
<nav id="event-nav" class="header-nav">
1011
<div class="navigation">
1112
<div class="navigation-title">
12-
<h1>
13+
<h2>
1314
{{ request.event.name }}
14-
<small>
15+
<small class="text-muted small">
1516
{% if request.event.has_subevents %}
1617
{% trans "Event series" %}
1718
{% else %}
1819
{{ request.event.get_date_range_display }}
1920
{% endif %}
2021
</small>
21-
</h1>
22+
</h2>
2223
</div>
2324
{% include "pretixcontrol/event/component_link.html" %}
2425
</div>
@@ -108,6 +109,7 @@ <h3 class="panel-title">
108109
{% include "pretixcontrol/event/fragment_subevent_choice_simple.html" %}
109110
</form>
110111
{% endif %}
112+
<br>
111113
<div class="dashboard custom">
112114
{% if not request.event.has_subevents or subevent %}
113115
{% include "pretixcontrol/event/fragment_timeline.html" %}

app/eventyay/eventyay_common/templates/eventyay_common/event/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
<nav id="event-nav" class="header-nav">
1010
<div class="navigation">
1111
<div class="navigation-title">
12-
<h1>
12+
<h2>
1313
{{ request.event.name }}
14-
<small>
14+
<small class="text-muted small">
1515
{% if request.event.has_subevents %}
1616
{% trans "Event series" %}
1717
{% else %}
1818
{{ request.event.get_date_range_display }}
1919
{% endif %}
2020
</small>
21-
</h1>
21+
</h2>
2222
</div>
2323
{% include "eventyay_common/event/component_link.html" %}
2424
</div>

app/eventyay/orga/templates/orga/event/dashboard.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@
2727
{% endif %}
2828
<div id="main-title" class="d-md-flex justify-content-between">
2929
<h2>
30-
<span>
31-
{{ request.event.name }}
32-
<small class="text-muted small">{{ request.event.get_date_range_display }}</small>
33-
</span>
30+
{{ request.event.name }}
31+
<small class="text-muted small">{{ request.event.get_date_range_display }}</small>
3432
</h2>
3533
{% include "orga/event/component_link.html" %}
3634
</div>

0 commit comments

Comments
 (0)