-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Feat/#40 detailed request
- Loading branch information
Showing
29 changed files
with
625 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,9 @@ | |
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" href="{% static '/css/base.css' %}"> | ||
<!-- CSS only --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> | ||
|
||
{% block static %}{% endblock %} <!-- base 상속받은 다른 html에 적용할 css 파일 경로 --> | ||
|
||
<meta charset="UTF-8" /> | ||
|
@@ -20,12 +23,14 @@ | |
<a href=""> 소식 </a> | ||
</div> | ||
<div class="nav_right"> | ||
{% block nav_right %} | ||
{% if user.is_authenticated %} | ||
<a href="{% url 'logout' %}" > 로그아웃 </a> | ||
{% else %} | ||
<a href="{% url 'login' %}" > 로그인 </a> | ||
<a href="{% url 'signup' %}"> 회원가입 </a> | ||
{% endif %} | ||
{% endblock %} | ||
</div> | ||
</div> | ||
{% endblock %} | ||
|
@@ -66,8 +71,9 @@ | |
</div> | ||
|
||
<!-- base.html에 적용될 자바스크립트 경로 --> | ||
<script type="text/javascript" src="{% static '/js/base.js' %}"></script> | ||
|
||
<!-- <script type="text/javascript" src="{% static '/js/base.js' %}"></script> --> | ||
<!-- JavaScript Bundle with Popper --> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script> | ||
<!-- 다음 html에 적용할 js 파일 경로 넣는 곳 --> | ||
{% block js %}{% endblock %} | ||
</body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.history{ | ||
margin: 0 auto; | ||
text-align: center; | ||
/* display: flex; | ||
justify-content: space-between; */ | ||
border: solid black 1px; | ||
padding: 0.5rem; | ||
width: 42rem; | ||
list-style-type: none; | ||
} | ||
span{ | ||
margin: 0 0.3rem; | ||
} |
Oops, something went wrong.