here are the files please -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
<<< text/html; charset=us-ascii; name=index.html: Unrecognized >>>
from django.conf.urls.defaults import * # Uncomment the next two lines to enable the admin: from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', (r'^$',include('inventory.apps.homepage.urls')), # Examples: # url(r'^$', 'inventory.views.home', name='home'), # url(r'^inventory/', include('inventory.foo.urls')), # Uncomment the admin/doc line below to enable admin documentation: # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), # Uncomment the next line to enable the admin: url(r'^admin/', include(admin.site.urls)), )
from django.conf.urls.defaults import * urlpatterns = patterns('inventory.apps.homepage.views', url(r'^$', 'index', name="homepage_index"), url(r'^about/$', 'about', name="homepage_about"), url(r'^contact/$', 'contact', name="homepage_contact"), url(r'^archive/$', 'archive', name="homepage_archive"), )