Django: URL Namespace와 Templates 구조
Django 프로젝트에서 URL 네임스페이스와 템플릿 네임스페이스를 사용하여 URL 및 템플릿 충돌 문제를 해결하는 방법을 설명합니다.
1. URL Namespace
문제 상황
Django 프로젝트에서 서로 다른 앱들이 동일한 URL 패턴과 이름을 가질 경우, 충돌 문제가 발생할 수 있습니다. 예를 들어, articles/urls.py
와 users/urls.py
에 각각 동일한 hello/
URL이 정의되어 있다면:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# articles/urls.py
from django.urls import path
from . import views
urlpatterns = [
path("hello/", views.hello, name="hello"),
]
# users/urls.py
from django.urls import path
from . import views
urlpatterns = [
path("hello/", views.hello, name="hello"),
]
만약 템플릿에서 아래와 같이 URL을 호출하면:
1
2
3
{% url 'hello' %} # 어느 앱의 hello로 연결될까요?
혹은
1
redirect('hello') # 어느 앱의 hello로 리다이렉트될까요?
이러한 혼란을 방지하기 위해 Django는 URL Namespace를 제공합니다.
URL Namespace 적용 방법
- 앱 이름 지정 각 앱의
urls.py
파일에app_name
변수를 추가합니다. 이를 통해 앱별로 고유한 네임스페이스를 정의합니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# articles/urls.py
from django.urls import path
from . import views
app_name = "articles"
urlpatterns = [
path("hello/", views.hello, name="hello"),
]
# users/urls.py
from django.urls import path
from . import views
app_name = "users"
urlpatterns = [
path("hello/", views.hello, name="hello"),
]
- URL 호출 시 네임스페이스 사용 네임스페이스를 적용한 후에는
namespace:url_name
형식으로 URL을 참조합니다.
1
2
3
4
5
6
7
{% url 'articles:hello' %}
{% url 'users:hello' %}
redirect('articles:hello')
redirect('users:hello')
- 기존 참조 수정 URL 네임스페이스를 추가하면 이전의 URL 참조는 더 이상 작동하지 않습니다. 모든 URL 호출부를 업데이트해야 합니다.
1
2
3
4
5
6
7
{% url 'create' %} → {% url 'articles:create' %}
redirect('create') → redirect('articles:create')
{% url 'profile' %} → {% url 'users:profile' %}
redirect('profile') → redirect('users:profile')
💡 팁: 새 프로젝트에서는 처음부터 app_name
을 정의하여 네임스페이스를 설정하면 이러한 문제를 미리 방지할 수 있습니다.
2. Templates 구조
문제 상황
Django는 기본적으로 templates
디렉토리에서 템플릿을 찾습니다. 만약, 서로 다른 앱(users
, articles
)에서 동일한 이름의 템플릿(index.html
)을 사용한다면, Django는 앱 로드 순서에 따라 특정 템플릿만 로드합니다.
1
2
3
4
5
6
7
8
# 예: 두 앱에 동일한 index.html 파일이 있을 때
{% extends "base.html" %}
{% block content %}
<h1>여기는 Users App의 INDEX</h1>
{% endblock %}
해결 방법: Templates Namespace
앱별로 고유한 템플릿 네임스페이스를 생성하여 문제를 방지합니다.
디렉토리 구조 변경
각 앱의
templates
디렉토리 안에 앱 이름으로 하위 디렉토리를 생성합니다.
1
2
3
4
5
6
7
8
9
users/
├── templates/
│ └── users/
│ └── index.html
articles/
├── templates/
│ └── articles/
│ └── index.html
템플릿 호출 시 네임스페이스 사용
네임스페이스를 적용한 후에는
<app_name>/template_name.html
형식으로 템플릿을 호출합니다.
1
2
3
4
{% include "users/index.html" %}
{% include "articles/index.html" %}
Django 기본 설정 확인
Django는 기본적으로 앱별
templates
디렉토리를 검색합니다. 추가적으로DIRS
옵션을 사용하여 프로젝트 전역templates
디렉토리를 지정할 수도 있습니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# settings.py
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [BASE_DIR / 'templates'],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
💡 팁: 새 프로젝트에서는 처음부터 <app_name>/templates/<app_name>
구조를 사용하는 것이 좋습니다.
결론
- URL Namespace를 사용하면 URL 이름 충돌을 방지할 수 있습니다.
- Templates Namespace를 사용하면 템플릿 파일 충돌을 방지할 수 있습니다.
- 이러한 설정은 대규모 Django 프로젝트에서 더욱 중요한 역할을 합니다.