Skip to content

Commit 7ee3441

Browse files
author
yook-gijun
committed
fix: 줄넘김 이슈 해결
1 parent 558e45c commit 7ee3441

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

templates/insights/index.html

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,13 @@
130130
box-sizing: border-box;
131131
"
132132
>
133-
{% if weekly_trend_html %} {{weekly_trend_html}} {% endif %}
133+
{% if weekly_trend_html %}
134+
{{weekly_trend_html}}
135+
{% endif %}
134136
{% if not is_expired_token_user and user_weekly_trend_html %}
135-
{{user_weekly_trend_html}} {% endif %} {% if
136-
is_expired_token_user %}
137+
{{user_weekly_trend_html}}
138+
{% endif %}
139+
{% if is_expired_token_user %}
137140
<!-- Token Expired Warning -->
138141
<div style="margin-bottom: 40px; box-sizing: border-box">
139142
<h2
@@ -146,8 +149,11 @@
146149
box-sizing: border-box;
147150
"
148151
>
149-
{% if user.username %} {{user.username}}님의 활동 리포트
150-
{% else %} 활동 리포트 {% endif %}
152+
{% if user.username %}
153+
{{user.username}}님의 활동 리포트
154+
{% else %}
155+
활동 리포트
156+
{% endif %}
151157
</h2>
152158
<div
153159
style="

0 commit comments

Comments
 (0)