Re: Django 1.11 and PostgreSQL 10 compatibility

2017-10-26 Thread Fabio C. Barrionuevo da Luz
Psycopg 2.7.3.2 was released with Postgresql 10 support http://initd.org/psycopg/articles/2017/10/24/psycopg-2732-released/ 2017-10-22 3:54 GMT-03:00 Edandweb : > Thanks > > On Thursday, 19 October 2017 12:27:50 UTC+3, Edandweb wrote: >> >> Hi, >> >> I am developing a

Re: Django Simple Request

2017-10-26 Thread Ruifeng Hu
Many thanks! On Thursday, October 26, 2017 at 4:01:47 AM UTC-5, Mike Dewhirst wrote: > > On 26/10/2017 3:08 AM, Ruifeng Hu wrote: > > Hi All, > > > > Is there anyone who can share with me some simples of Django, I just > > start learning Django! > > STart here ... > >

Consulta de campo duplicado en la base

2017-10-26 Thread andres
Hola una consulta, como hago un metodo para que se conecte y consulte a la db si el nro de doc ya esta registrado.. -- 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

Re: Passing 3 user inputs as argument in url, for a search form

2017-10-26 Thread Jack
I managed to get the code functional. I haven't done extensive testing but it's certainly working right now with your code plus some of my own fixes. I should read the documentation more carefully in the future. Thanks again for the super detailed response James. On Wednesday, October 25,

MultipleChoiceField records down choices as a list, but CharField converts them to a list?

2017-10-26 Thread Jack
I have a model field for choosing multiple options. Here is the code for models and forms: *models.py:* CONDO_APARTMENT = 'Condo Apartment' DETACHED_HOUSE = 'Detached House' SEMI_DETACHED = 'Semi-detached' TOWNHOUSE = 'Townhouse' PROPERTY_TYPE = (

Null characters in SQL query after having migrated to python 3.5.3

2017-10-26 Thread Etienne Robillard
Hi, I successfully ported Django 1.4.22 to Python 3.5.3. However, I'm getting a unexpected issue when attempting to fetch a new session key with the _get_new_session_key() function. Environment: Request Method: GET Request URL: http://localhost:8133/admin/ Django Version: 1.4.22 Python

Re: Django Simple Request

2017-10-26 Thread Mike Dewhirst
On 26/10/2017 3:08 AM, Ruifeng Hu wrote: Hi All, Is there anyone who can share with me some simples of Django, I just start learning Django! STart here ... https://docs.djangoproject.com/en/1.11/ Then here to see there are seven parts to the tutorial