Page not found (404)

Request Method: GET
Request URL: http://amirmehran.com/print/

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

  1. [name='index']
  2. admin/
  3. about/ [name='about']
  4. ^prints/(?P<print_title>.+?)/$ [name='print_item']
  5. ^print/(?P<print_title>.+?)/$ [name='print_item']
  6. prints/ [name='prints']
  7. ^motion/(?P<motion_title>.+?)/$ [name='motion_item']
  8. motion/ [name='motions']
  9. ^motions/(?P<motion_title>.+?)/$ [name='motion_item']
  10. motions/ [name='motions']
  11. ^animations/(?P<animation_title>.+?)/$ [name='animation_item']
  12. animations/ [name='animations']
  13. contact/ [name='contact']
  14. ^jet/
  15. ^tinymce/
  16. ^media\/(?P<path>.*)$
  17. ^static\/(?P<path>.*)$

The current path, print/, 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.