Skip to content

Commit 253fbfe

Browse files
authored
fix: Profile page head problems (#321)
1 parent 5a69ad1 commit 253fbfe

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

app/templates/profile.html

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
{% extends "base.html" %} {% include "partials/calendar/event/text_editor_partial_head.html" %} {% block content %}
1+
{% extends "base.html" %}
22

3+
{% block head %}
4+
{{ super() }}
5+
{% include "partials/calendar/event/text_editor_partial_head.html" %}
6+
{% endblock %}
7+
8+
{% block content %}
39
<div class="container mt-4">
410
<div class="row">
511
<!-- Left side -->
@@ -10,10 +16,9 @@
1016
<!-- Profile update menu -->
1117
<div class="d-flex flex-row-reverse">
1218
<div class="dropdown">
13-
<span class="text-secondary p-1 mx-2" type="button" id="dropdownMenuButton"
14-
data-bs-toggle="dropdown" aria-expanded="false">
15-
<i class="fa fa-edit"></i>
16-
</span>
19+
<span class="text-secondary p-1 mx-2">
20+
<i class="fa fa-edit"></i>
21+
</span>
1722
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton">
1823
<li class="list-group-item no-border">
1924
<button type="button" class="btn text-secondary p-1 dropdown-item" data-bs-toggle="modal"
@@ -374,4 +379,4 @@ <h2 class="modal-title">Update Event</h2>
374379
</div>
375380
</div>
376381
</div>
377-
{% include "partials/calendar/event/text_editor_partial_body.html" %} {% endblock content %}
382+
{% include "partials/calendar/event/text_editor_partial_body.html" %} {% endblock content %}

0 commit comments

Comments
 (0)