Django 2.1.1 No Reverse Match

2018-09-15 Thread Emprex KG
Hey everyone, been learning Django for a week or so ago now, Today I have been having issues with the Django reset_password view after I have added namespace to my app path('reset_password/', PasswordResetView.as_view(template_name='accounts/reset_password.html'), name='reset_password'),

new to django

2018-09-15 Thread Jayram Rawat
hello everyone , i am new to django can any one tell me that how to use django and whats the main purpose of it. thank you -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an

Django 2 NoReverseMatch (Default Django Reset Password View)

2018-09-15 Thread Emprex KG
Hey Everyone, I have been getting to grips wit Django over the last week no real issue :D However today since adding namespaces to my apps, I have gotten this error NoReverseMatch at /account/reset_password/ Reverse for 'password_reset_done' not found. 'password_reset_done' is not a

Re: Django 2 NoReverseMatch (Default Django Reset Password View)

2018-09-15 Thread Emprex KG
I found the solution by adding success_url to the path path('reset_password/', PasswordResetView.as_view(template_name='accounts/reset_password.html', success_url='/account/reset_password/done'), name='reset_password'), On Saturday, September 15, 2018 at 12:58:49 PM UTC+1, Emprex KG wr

Re: Django 2 NoReverseMatch (Default Django Reset Password View)

2018-09-15 Thread Jason
so, Django has a couple views for password resets. First is the actual password reset page, which sends a POST request, then redirects to Done which is the template returned to the server. What's happening here is Django can't find the URL name password_reset_done, and throws this error If yo

Re: new to django

2018-09-15 Thread Shahil Hussain
Django is cool technology through which you make a web app(or you can say website) in which the backend(the database, all the information) and frontend (the website that you see from your device, the designed pages) are connected together. I am also a slightly experienced beginner. ; ) Django is a

about project

2018-09-15 Thread vikamadithya reddy
can anyone suggest me a good project for undergraduation course using django? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegro

Re: Running django tests with postgres

2018-09-15 Thread Andréas Kühne
I would just be scared that some minor issues are different between the database implementations - therefore some test that would work in the tests and during development, doesn't work in production. I usually try to use the same things in production and development (or as close as possible). Tha

update the date from the serializer with a new dict

2018-09-15 Thread georgenistor . ro
I have created a simple service which returns the data from a single table based on a param in the URL as follow: Enter code here...http://127.0.0.1:8000/api/figo?figonr=1078924300-01 output is the json: HTTP 200 OKAllow: GETContent-Type: application/jsonVary: Accept [ { "figonr": "107

Re: about project

2018-09-15 Thread Vivek Bhardwaj
Monitoring Systems like Inventory Management System etc.

Re: about project

2018-09-15 Thread Tim Vogt (Tim Vogt)
These are nice projects tim https://wsvincent.com/django-contact-form/ > Op 15 sep. 2018, om 16:11 heeft vikamadithya reddy > het volgende geschreven: > > can anyone suggest me a good project for undergraduation course using django? > > -- > You received this message because you are subscr

Re: Running django tests with postgres

2018-09-15 Thread Jason
Agreed. Something is definitely off. At work, the legacy monolith django app has about 7800 tests. It takes about 18 minutes to run the full test suite in docker with the latest MBP (four cores, 5GB RAM allocated in docker machine), including creating the db and four parallel test streams ru

Re: new to django

2018-09-15 Thread Jayram Rawat
Thanks 4 the advice.. i will follow as you mentioned..😊😊 On Sat, Sep 15, 2018, 6:37 PM Shahil Hussain wrote: > Django is cool technology through which you make a web app(or you can say > website) in which the backend(the database, all the information) and > frontend (the website that you see fro

Channels thread count is increasing

2018-09-15 Thread erkin kabataş
Hi All, I am new to python and django. I am using Python 3.6.5, Django 2.1 and Channels 2.1.2. My problem is when I switch to ASGI from WSGI server, in every request, thread count is increasing. Same thing is happening when I use sync_to_async function in consumers.py. Is this a normal behaviou

Re: Channels thread count is increasing

2018-09-15 Thread vishal sharma
In post API How to return response to network machine in Django ? On Sun, 16 Sep 2018 at 4:32 AM, erkin kabataş wrote: > Hi All, > > I am new to python and django. > I am using Python 3.6.5, Django 2.1 and Channels 2.1.2. > My problem is when I switch to ASGI from WSGI server, in every request,

Re: Running django tests with postgres

2018-09-15 Thread Mike Dewhirst
My software classifies chemical hazards according to intrinsic physical properties. This requires accessing large quantities of reference data imported from jurisdictions around the world. The tests demand correct classification for known properties. There are dozens of different classificatio