Download this file
9 lines (7 with data), 265 Bytes
| 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.