Page not found (404)

Request Method: GET
Request URL: http://permitprint.com/index.html

Using the URLconf defined in permit.urls, Django tried these URL patterns, in this order:

  1. ^admin/
  2. services.html
  3. contact.html [name='contact']
  4. register.html [name='register']
  5. login.html [name='login_view']
  6. plate.html [name='check_plate']
  7. activate.html [name='activate']
  8. reset.html [name='reset']
  9. resend_ak.html [name='resend_ak']
  10. thanks.html
  11. ^print/(?P<permit_id>\d+)/?$
  12. ^renew_permit/(?P<permit_id>\d+)/(?P<months>\d+)/?$
  13. validate.html [name='validate']
  14. ^api/check_plate/$ [name='api_check_plate']
  15. ^/?$

The current URL, index.html, didn't match any of these.

You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.