Menu

[r193]: / trunk / urls.py  Maximize  Restore  History

Download this file

9 lines (7 with data), 265 Bytes

1
2
3
4
5
6
7
8
from django.conf.urls.defaults import *
from django.views.generic.list_detail import object_detail
from dataplot.models import *
urlpatterns = patterns(
'dataplot.soccer.views',
(r'(?P<object_id>d+)/$',object_detail,{'queryset':Dataplot.objects.all()}),
)
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.