Page not found (404)

Request Method: GET
Request URL: https://fashiongraphics.net/students/login/index.html?next=%252Fstudents%252Fprofile%252F

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

  1. ^static\/(?P<path>.*)$
  2. ^uploads\/(?P<path>.*)$
  3. ^admin/fgstudents/
  4. ^admin/portfolio/
  5. ^admin/
  6. ^ ^students/ ^login/$ [name='students_login']
  7. ^ ^students/ ^logout/$ [name='logout']
  8. ^ ^students/ ^change_password/$ [name='pwd_change']
  9. ^ ^students/ ^reset_password/$ [name='pwd_reset']
  10. ^ ^students/ ^reset_password/done/$ [name='password_reset_done']
  11. ^ ^students/ ^reset_password/confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$ [name='password_reset_confirm']
  12. ^ ^students/ ^reset_password/complete/$ [name='password_reset_complete']
  13. ^ ^students/ ^$ [name='students_default']
  14. ^ ^(?P<class_slug>[^/]+)/about/$ [name='class_about']
  15. ^ ^(?P<class_slug>[^/]+)/students/$ [name='users_profile']
  16. ^ ^(?P<class_slug>[^/]+)/students/images/$ [name='show_users_images']
  17. ^ ^(?P<class_slug>[^/]+)/students/images/reorder/$ [name='user_reorder_gallery']
  18. ^ ^(?P<class_slug>[^/]+)/students/new_image/$ [name='new_users_image']
  19. ^ ^(?P<class_slug>[^/]+)/students/edit_image/(?P<id>[^/]+)/$ [name='edit_users_image']
  20. ^ ^(?P<class_slug>[^/]+)/students/delete_image/(?P<gi_id>[^/]+)/$ [name='delete_users_image']
  21. ^ ^(?P<class_slug>[^/]+)/slideshow/(?P<gallery_slug>[^/]+)/(?P<image_slug>[^/]+)/$ [name='students_slideshow_image']
  22. ^ ^(?P<class_slug>[^/]+)/gallery/(?P<gallery_slug>[^/]+)/(?P<image_slug>[^/]+)/$ [name='students_gallery_image']
  23. ^ ^(?P<class_slug>[^/]+)/$ [name='students_index']
  24. ^ ^$ [name='main_page']

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