Skip to content

Commit

Permalink
error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dddooo9 committed Aug 28, 2021
1 parent 140bbeb commit 1b881df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions groups/templates/groups/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ <h2>{{dates|index_1:0}} ~ {{dates|index_1:29}}</h2>
{% for member in goal.member.all %}
{% if request.user == goal.manager %}
<a href="{% url 'groups:delete_member' goal.id member.id %}" class="a_deco"
onclick="return confirm('정말로 팀원은 퇴장시키겠습니까?😥')">&nbsp;&nbsp;{{member}}</a>
onclick="return confirm('정말로 팀원을 퇴장시키겠습니까?😥')">&nbsp;&nbsp;{{member}}</a>
{% else %}
{{member}}
{% endif %}
Expand All @@ -196,7 +196,7 @@ <h2>{{dates|index_1:0}} ~ {{dates|index_1:29}}</h2>
<li>인증날짜<span>{{ certify.created }}</span></li>
{% if goal.certify_method == 'image' %}
{% if certify.image %}
<img src="{{ certify.image.url }}" alt="image" width="200px" height="200px">
<img src="{{ certify.image.url }}" alt="image" width="auto" height="200px">
{% endif %}
{% elif goal.certify_method == 'text' %}
<li>인증내용<span>{{ certify.text }}</span></li>
Expand Down

0 comments on commit 1b881df

Please sign in to comment.