Re: ARGPARSE ERROR

2018-04-12 Thread Ankush Sharma
Hi Babatunde , I installed other listed tools ! Here the main concern im talking about is Argsparse - the Progressbar2 3.6.2 requires argparse, which is not installed. Thanks in advance Ank On Thu, 12 Apr 2018 at 20:53, Babatunde Akinyanmi wrote: > This is not a django

Re: ARGPARSE ERROR

2018-04-12 Thread Babatunde Akinyanmi
This is not a django problem. Simply install and upgrade the apps specified in the error message On Thu, 12 Apr 2018, 16:03 Ank, wrote: > Hi all, > > Iḿ trying to setup Catmaid - http://catmaid.readthedocs.io/en/stable/. Iḿ > receiving this error when installing

Re: wrong imports channel ?

2018-04-12 Thread Andrew Godwin
Channels 2 has different objects and import paths - code from Channels 1 (like you have there) isn't compatible. Andrew On Thu, Apr 12, 2018 at 12:37 AM, Jules LE BRIS wrote: > Hi, > > I would like to do something like this in views.py : > > message = {"message":msg} >

Re: [ANN]: django-todo 2.0

2018-04-12 Thread Ankush Sharma
Thanks ! I will try to implement as you suggested !! On Thu, 12 Apr 2018 at 17:31, Scot Hacker wrote: > On Thursday, April 12, 2018 at 1:47:14 AM UTC-7, Derek wrote: >> >> Interesting to hear of this. >> >> Unfortunately we are currently committed to Django 1.11 as it is

Re: [ANN]: django-todo 2.0

2018-04-12 Thread Scot Hacker
On Thursday, April 12, 2018 at 1:47:14 AM UTC-7, Derek wrote: > > Interesting to hear of this. > > Unfortunately we are currently committed to Django 1.11 as it is an LTS, > but if you're planning on keeping this in-sync with all 2.x releases, then > that opens up the option to look at using

ARGPARSE ERROR

2018-04-12 Thread Ank
Hi all, Iḿ trying to setup Catmaid - http://catmaid.readthedocs.io/en/stable/. Iḿ receiving this error when installing requirements. Progressbar2 3.6.2 requires argparse, which is not installed. twisted 17.9.0 requires zope.interface>=3.6.0, which is not installed. matplotlib 2.1.0 requires

Re: wrong imports channel ?

2018-04-12 Thread N. Srinivasan
Thank you Sir! On Thu, Apr 12, 2018 at 3:37 AM, Jules LE BRIS wrote: > Hi, > > I would like to do something like this in views.py : > > message = {"message":msg} > Channel('chat').send(message, immediately=True) > > but the import : from channels import Channel doen't

Re: username and allowed alphanumeric, why?

2018-04-12 Thread Stefano Tranquillini
My question was related why only that set of extrachars, adding a '=' is a dangerous step or not? Reading the rest of the page it seems that everyhing is supported with unicode. On Wednesday, April 11, 2018 at 4:03:04 PM UTC+2, Melvyn Sopacua wrote: > > On dinsdag 10 april 2018 11:10:33 CEST

retain form data when a user session expires while filling a form

2018-04-12 Thread Vijay Shanker
I have to code this scenario: Some user comes to fill a form and while user is at it, session expires; User tries to submit form, as session has expired it will take him to login page after which he is rediredted to form page with a prefilled form with data he filled previously. my propsed

wrong imports channel ?

2018-04-12 Thread Jules LE BRIS
Hi, I would like to do something like this in views.py : message = {"message":msg} Channel('chat').send(message, immediately=True) but the import : from channels import Channel doen't work. I'm using channels==2.0.2. -- You received this message because you are subscribed to the Google

Re: Tips On Migrating DB from other website to django with Postgresql

2018-04-12 Thread Mike Dewhirst
On 12/04/2018 12:44 PM, tango ward wrote: Sorry for the follow up question, when you say run migration locally, this is running python manage.py makemigrations and python manage.py migrate, right?  Please let me know if I got these steps correctly: - make a postgres test db - changed database

Re: [ANN]: django-todo 2.0

2018-04-12 Thread Derek
Interesting to hear of this. Unfortunately we are currently committed to Django 1.11 as it is an LTS, but if you're planning on keeping this in-sync with all 2.x releases, then that opens up the option to look at using this from 2.2 onwards (that's the next LTS). On Tuesday, 10 April 2018

How can i call django's buitin time or date widget in user interface?

2018-04-12 Thread squal poreover
Hello... In the models.py i use pub_date = models.DateField(). So it shows in the admin interface djangos built in beautiful date widget (as it should be) But