Skip to content

Commit 00461a5

Browse files
committed
ggg
1 parent 59c7f4c commit 00461a5

File tree

5 files changed

+9
-14
lines changed

5 files changed

+9
-14
lines changed

log_share/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
'ENGINE': 'django.db.backends.mysql',
108108
'NAME': 'log_share',
109109
'USER': 'root',
110-
'PASSWORD': '123',
110+
'PASSWORD': '123123',
111111
'HOST': 'localhost',
112112
'PORT': '3306',
113113
}

log_share/templates/base.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<head>
66
<meta charset="UTF-8">
77
<title>Log share</title>
8+
9+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
10+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css" />
11+
812
<style>
913
* {
1014
font-family: NanumSquare;
@@ -205,14 +209,14 @@
205209
</ul>
206210
</li>
207211
{% if user.is_authenticated %}
208-
<li><a href="{% url 'myprofile:profile_detail' request.user.pk %}">프로필</a>
212+
<li><a href="{% url 'myprofile:my_profile' request.user.pk %}">프로필</a>
209213
<ul class="sub2">
210214
<li><a href="{% url 'myprofile:my_profile' request.user.pk %}">내 프로필</a></li>
211215
<li><a href="{% url "myprofile:profile_edit" request.user.pk %}">프로필 변경</a></li>
212216
</ul>
213217
</li>
214218
{% endif %}
215-
<li><a href="{% url 'post:post_create' %}">포트폴리오</a>
219+
<li><a href="{% url 'myprofile:profile_detail' request.user.pk %}">포트폴리오</a>
216220
<ul class="sub3">
217221
<li><a href="{% url 'myprofile:profile_detail' request.user.pk %}">내 포폴</a></li>
218222
<li><a href="{% url 'post:post_create' %}">포폴 작성</a></li>

myprofile/templates/myprofile/profile_detail.html

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -364,12 +364,6 @@
364364
</div>
365365
<!--타임라인 끝-->
366366

367-
<div class="profile_url_container">
368-
대표 URL
369-
<div>네이버 URL:
370-
{% if profile.naver != None %}
371-
<a href="{{ profile.naver }}">{{ profile.naver }}</a>
372-
{% endif %}
373367
{% if profile.naver != None %}
374368
<div class="naver">
375369
<div class="naver_label"><a href="{{ profile.naver }}">네이버</a></div>
@@ -404,7 +398,7 @@
404398
<div class="profile_edit"><a href="{% url 'myprofile:profile_edit' profile.user.pk %}">프로필 수정하기</a>
405399
</div>
406400
{% endif %}
407-
</div>
401+
408402
<hr>
409403
<div class="profile_recent_tag">
410404
최근 태그 리스트 :

requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
asgiref==3.2.3
22
Django==2.2.9
3-
django-appconf==1.0.3
4-
django-compressor==2.4
53
django-summernote==0.8.11.6
64
django-taggit==1.2.0
75
djangorestframework==3.11.0

search/templates/search/main.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
66
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
77
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
8-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
9-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css" />
8+
109
{# <link rel="stylesheet" href="{% sass_src 'search/search_bar.scss' %}">#}
1110
{% load static %}
1211
<link rel="stylesheet" href="{% static "search/search.css" %}">

0 commit comments

Comments
 (0)