forked from 00dani/lemoncurry
11 lines
263 B
Python
11 lines
263 B
Python
|
from django.conf import settings
|
||
|
from django.conf.urls import url
|
||
|
|
||
|
from .views import unshort
|
||
|
|
||
|
app_name = 'lemonshort'
|
||
|
urlpatterns = tuple(
|
||
|
url(r'^{0!s}(?P<tiny>\w+)$'.format(k), unshort, kwargs={'model': m})
|
||
|
for k, m in settings.SHORTEN_MODELS.items()
|
||
|
)
|