Skip to content

Commit

Permalink
Fix: Multiline info display in meeting minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
sopyb committed Mar 16, 2024
1 parent cab5360 commit 677c497
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion mote/templates/statfile.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
{% block head %}
<meta property="og:title" content="{{ meetname }} - {{ typecont }}">
<meta property="og:description" content="{{ typecont }} of meeting {{ meetname }} in {{ channame }} - {{ cldrdate.strftime("%B %d, %Y") }}">
<style>
#meetcont li {
white-space: pre-line;
}
</style>
{% endblock %}

{% block content %}
Expand Down Expand Up @@ -30,7 +35,7 @@
<div class="card-header text-center head fw-bold">
{{ typecont | upper }}
</div>
<div class="card-body">
<div class="card-body" id="meetcont">
{{ meetcont | safe }}
</div>
<div class="card-footer text-center">
Expand Down

0 comments on commit 677c497

Please sign in to comment.