Skip to content

Commit

Permalink
Merge pull request #19 from will-moore/django-4-0
Browse files Browse the repository at this point in the history
django 4.0
  • Loading branch information
jburel authored Oct 24, 2023
2 parents 54830d3 + 3f52ff4 commit 1b26908
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions omero_signup/urls.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from django.conf.urls import url
from django.urls import re_path
from . import views


urlpatterns = [

# index 'home page' of the websignup app
url(r'^$', views.WebSignupView.as_view(), name="signup_index"),
re_path(r'^$', views.WebSignupView.as_view(), name="signup_index"),
]

0 comments on commit 1b26908

Please sign in to comment.