No worries, I wouldn't say I beat you, this is just a discussion :) Looking
forward to your future contributions
On Wed, 22 May 2019 at 02:10, Brad Solomon
wrote:
> Thanks Adam--the thoroughness of your response makes me more, rather than
> less, interested in contributing further to Django. An
and also in import for include change it to
from django.conf.urls import url,include
On Monday, May 27, 2019 at 8:17:47 PM UTC+5:30, Madhur Kabra wrote:
>
> I am getting the url conf error, I have attached the relevant files.
> Thanks for the assistance
>
--
You received this message because
in this
from django.urls import URLPattern, url
from . import views
urlpatterns = [
url('', views.index, name=index),
]
can u replace with this
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name=index),
]
On Mon, May 27, 2019 at 8:32 PM Madhu
Hey update the code to this:
urlpatterns = [
url('^$', views.index, name=index),
]
this will tell the start and end of url.
On Monday, May 27, 2019 at 8:17:47 PM UTC+5:30, Madhur Kabra wrote:
>
> I am getting the url conf error, I have attached the relevant files.
> Thanks for the assistanc
Hi!
I think you've found the wrong mailing list for this post. This mailing
list is for the development of Django itself, not for support using Django.
This means the discussions of bugs and features in Django itself, rather
than in your code using it. People on this list are unlikely to answer yo
I am getting the url conf error, I have attached the relevant files.
Thanks for the assistance
--
You received this message because you are subscribed to the Google Groups
"Django developers (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from
Hi all,
A bit of an issue came about in the PR: If you define an enum class
which inherits `str`, there's an ambiguity when asking for its string
representation (that is, explicit conversion to `str`) -- between it
simply being a `str`, and Enum's `__str__()` which returns
`Type.NAME'.
The ambig
Week ending May 26, 2019.
*Triaged:*
https://code.djangoproject.com/ticket/30490 - migrations unique_index on
(app, name). (wontfix)
https://code.djangoproject.com/ticket/30491 - Document changing primary key
behavior in "How Django knows to UPDATE vs. INSERT" section. (accepted)
https://code.dj