mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-05-11 14:53:09 +00:00
- Fixed an undefined name bug in add_localized_fields error message when a model already has a field by the name that is added. - Fixed redefined method name in ModeltranslationWithFileFields test class.
10 lines
287 B
Python
10 lines
287 B
Python
# -*- coding: utf-8 -*-
|
|
from django.conf.urls import include, patterns, url
|
|
from django.contrib import admin
|
|
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
url(r'^set_language/$', 'django.views.i18n.set_language', {},
|
|
name='set_language'),
|
|
url(r'^admin/', include(admin.site.urls)),)
|