You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
262 B

# -*- coding: utf-8 -*-
from django.conf.urls import patterns, include, url
from .views import npfs_all, npfs_fond
urlpatterns = patterns('',
url(r'^$', npfs_all, name='npfs-all'),
url(r'^(?P<slug>[0-9A-Za-z-_.]+)/$', npfs_fond, name='npfs-fond'),
)