From fd6b7456e5ac344a56239c5d7143e7f97406b5da Mon Sep 17 00:00:00 2001 From: Cory Zue Date: Fri, 29 Sep 2023 16:02:47 +0200 Subject: [PATCH] Added urls.py to the default app_template. https://forum.djangoproject.com/t/updating-the-default-startapp-template/24193/5 Also added Cory Zue to AUTHORS --- AUTHORS | 1 + django/conf/app_template/urls.py-tpl | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 django/conf/app_template/urls.py-tpl diff --git a/AUTHORS b/AUTHORS index a633f6e03c..9c1fb48f2b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -227,6 +227,7 @@ answer newbie questions, and generally made Django that much better: Collin Anderson Collin Grady Colton Hicks + Cory Zue Craig Blaszczyk crankycoder@gmail.com Curtis Maloney (FunkyBob) diff --git a/django/conf/app_template/urls.py-tpl b/django/conf/app_template/urls.py-tpl new file mode 100644 index 0000000000..d0313aaf24 --- /dev/null +++ b/django/conf/app_template/urls.py-tpl @@ -0,0 +1,4 @@ +from django.urls import path + +# Create your URL patterns here. +urlpatterns = []