Skip to content

Commit

Permalink
Merge pull request #107 from yaena1223/main
Browse files Browse the repository at this point in the history
๋กœ๊ทธ์•„์›ƒ ๋ฒ„ํŠผ ๋ชจ๋“  ํŽ˜์ด์ง€์— ๋œจ๋„๋ก
  • Loading branch information
yaena1223 authored Jul 10, 2022
2 parents 64c7537 + 22b198d commit a7edf37
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
Binary file modified runningmate/mateapp/__pycache__/views.cpython-310.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion runningmate/mateapp/templates/mateapp/calendar.html
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@
<!-- ๋ฆฌ์ŠคํŠธ์— ๋‹ด๊ธด ๊ฑธ ํฌ๋ฌธ ๋‘๊ฐœ๋กœ ๋‚˜๋ˆ ์„œ ํˆฌ๋‘ ํ•˜๋‚˜์”ฉ ๋ถˆ๋Ÿฌ์™€์„œ if๋ฌธ์œผ๋กœ
๋ถˆ๋Ÿฌ์˜จ ํ•˜๋‚˜์˜ ํˆฌ๋‘๋ž‘ ์—ฐ๊ฒฐ๋œ ํ•˜๋‚˜์˜ ํ”„๋กœ์ ํŠธ๊ฐ€ ํˆฌ๋‘ ๋ชจ๋ธ์—์„œ ์™ธ๋ž˜ -->
</div>
<a href="{% url 'account_logout' %}"><img id = "logout_button" src = "{% static 'images/logout.png' %}"/></a>
<a href="{% url 'account_logout' %}"><img id = "logout_button" src = "{% static 'images/logout.png' %}" style="position: fixed;"/></a>


<script>
Expand Down
2 changes: 1 addition & 1 deletion runningmate/mateapp/templates/mateapp/create_schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,5 @@ <h2>ํ•  ์ผ์ด ์žˆ๋‚˜์š”? ์ผ์ •์„ ์ถ”๊ฐ€ํ•ด์ฃผ์„ธ์š”!</h2>
</form>
</div>
</div>

<a href="{% url 'account_logout' %}"><img id = "logout_button" src = "{% static 'images/logout.png' %}" style="position: fixed;"/></a>
{% endblock %}
1 change: 1 addition & 0 deletions runningmate/mateapp/templates/mateapp/project.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,4 +172,5 @@ <h3>{{project.summary}}</h3>
</div>

</div>
<a href="{% url 'account_logout' %}"><img id = "logout_button" src = "{% static 'images/logout.png' %}" style="position: fixed;"/></a>
{% endblock %}
6 changes: 4 additions & 2 deletions runningmate/mateapp/templates/mateapp/project_post.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ <h3>{{project.summary}}</h3>
{% for comment in boards %}
<div class = "item3" id = "{{comment.id}}">
<div id = "mimoji_place" >
<section id = "mimoji" style="width: 70px; height:70px; border-radius: 50%; background:{{project.color}}; ;margin:10px;">
<section id = "mimoji" style="width: 70px; height:70px; border-radius: 50%; background:{{project.color}}; ;margin:10px;background-image: url({{ user.profile.profile.url }})">

</section>
</div>
Expand Down Expand Up @@ -137,7 +137,8 @@ <h3>{{project.summary}}</h3>
{% endif %}

<li class = "page-item active">
<a class = "page-link"border: none;>{{boards.number}}/{{boards.paginator.num_pages}}</a>
<a class = "page-link"border: none;>
{{boards.number}}/{{boards.paginator.num_pages}}</a>
</li>

{% if boards.has_next %}
Expand All @@ -161,4 +162,5 @@ <h3>{{project.summary}}</h3>
</div>

</div>
<a href="{% url 'account_logout' %}"><img id = "logout_button" src = "{% static 'images/logout.png' %}" style="position: fixed;"/></a>
{% endblock %}

0 comments on commit a7edf37

Please sign in to comment.