workflow management

2018-10-01 Thread django_learner
What is the best way to create a workflow management. -- 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...@googlegroups.com. To post to this

Re: How to use Django with Reactjs

2018-10-01 Thread lakshitha kumara
Hello, Mohammad Ansari, Yes, you can use Django and Reactjs together. you can use Django web pack loader. https://github.com/owais/django-webpack-loader On Tuesday, October 2, 2018 at 2:09:16 AM UTC+5:30, iammoham...@gmail.com wrote: > > Hi can we use Django with Reactjs without using api

Re: Geodjango Error

2018-10-01 Thread heriberto ochoa
try this installation https://sandbox.idre.ucla.edu/sandbox/tutorials/installing-gdal-for-windows or this http://www.sigdeletras.com/2016/instalacion-de-python-y-gdal-en-windows/ El lun., 1 de oct. de 2018 4:02 p. m., escribió: > I have installed PROJ4, GDAL and GEOS libraries using OSGeo4W

Re: Geodjango Error

2018-10-01 Thread vaibhav . gupta_cs16
On Tuesday, October 2, 2018 at 3:32:18 AM UTC+5:30, vaibhav.g...@gla.ac.in wrote: > > I have installed PROJ4, GDAL and GEOS libraries using OSGeo4W installer > . But the problem is with GDAL library. > Earlier there was an error showing :- >

Re: Geodjango Error

2018-10-01 Thread vaibhav . gupta_cs16
I have installed PROJ4, GDAL and GEOS libraries using OSGeo4W installer . But the problem is with GDAL library. Earlier there was an error showing :- django.core.exceptions.ImproperlyConfigured: Could not find the GDAL library (tried "gdal202", "gdal201",

Point-in-Time version history with Django with propose and commit or reject

2018-10-01 Thread Mikkel Kromann
Dear Django users. I am looking into the so-called Point-In-Time architecture for databases with version history. See e.g. https://www.red-gate.com/simple-talk/sql/database-administration/database-design-a-point-in-time-architecture/ One reason I like PTA is that a version history for my

How to use Django with Reactjs

2018-10-01 Thread iammohammadansari
Hi can we use Django with Reactjs without using api and what is ways for using Django and Reactjs together? -- 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

Re: Geodjango Error

2018-10-01 Thread heriberto ochoa
Could it be that it does not find a .dll file, what libraries do you use? El lun., 1 de oct. de 2018 11:17 a. m., escribió: > Currently, I am working on Geodjango. I have gone through all the > procedures written in > https://docs.djangoproject.com/en/2.1/ref/contrib/gis/install/#requirements >

Geodjango Error

2018-10-01 Thread vaibhav . gupta_cs16
Currently, I am working on Geodjango. I have gone through all the procedures written in https://docs.djangoproject.com/en/2.1/ref/contrib/gis/install/#requirements for windows OS. But still I am facing an error showing : OSError: [WinError 126] The specified module could not be found You can

Re: How to add form field dynamically?

2018-10-01 Thread heriberto ochoa
maybe with formset and jquery: https://docs.djangoproject.com/en/2.1/topics/forms/formsets/ El miércoles, 26 de septiembre de 2018, 5:46:14 (UTC-6), Django Lover escribió: > > I am creating a model form, i need to add a field dynamically can you > please give me the solution by using your sharp

Re: SQL MIGRATION

2018-10-01 Thread heriberto ochoa
yes you need install with pip install mysqlclient and maybe sudo apt-get install libmysqlclient-dev El martes, 25 de septiembre de 2018, 16:25:30 (UTC-6), Afoakwa Stephen escribió: > > Am getting this error when moving from mysqli to mysql databases >

Re: App Sync

2018-10-01 Thread Dennis Alabi
Thanks for your help On Monday, October 1, 2018 at 3:24:11 PM UTC+1, Jason wrote: > > Then I really hope you have a thorough test suite. otherwise, the > possibility of having a rough time with the 2 - 3 migration is pretty high. > -- You received this message because you are subscribed to

Re: How to add form field dynamically?

2018-10-01 Thread Devender Kumar
Hi, I have been to this type of problem. There two solutions to this You have to made this using java script for front end and for database or backend. For front end make a counter which will create a form fileds with name="columnname$countet" sir that the post request you can fetch all the detail

Location of Django Basic Poll App Files

2018-10-01 Thread William Kidwell
Does anyone know where the source files to Django's first tutorial are? I mean to the "basic poll" we all start off with... The tutorial is here - https://docs.djangoproject.com/en/2.1/intro/tutorial01/ But I'm wondering if there is a zip file of all the code I could download somewhere...

Re: App Sync

2018-10-01 Thread Jason
Then I really hope you have a thorough test suite. otherwise, the possibility of having a rough time with the 2 - 3 migration is pretty high. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: App Sync

2018-10-01 Thread Dennis Alabi
Python 2.7 was use to develop the APP On Monday, October 1, 2018 at 2:35:00 PM UTC+1, Dennis Alabi wrote: > > Please can i install an App developed in django 1.7 into django 2.1 > environment > > -- You received this message because you are subscribed to the Google Groups "Django users"

Re: App Sync

2018-10-01 Thread Jani Tiainen
Hi. That really greatly depends and only way to find it out is to install it and does it work. Most notable change is that Django 2.0+ requires Python 3. ma 1. lokak. 2018 klo 16.34 Dennis Alabi kirjoitti: > Please can i install an App developed in django 1.7 into django 2.1 > environment > >

App Sync

2018-10-01 Thread Dennis Alabi
Please can i install an App developed in django 1.7 into django 2.1 environment -- 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

Re: ValueError at /news/ Value: None must be instance of Model:

2018-10-01 Thread ganesh c
Hi Sagar, I am facing the similar issue while adding User model as embeddedmodel in a custom profile model. Please let me know do you get any solutions for your issue, Thanks, Ganesh On Wednesday, 22 August 2018 11:58:29 UTC+5:30, Sagar wrote: > > Hi Mikhailo > I think the problem is with

Re: Extending contrib.sites.get_current_site logic

2018-10-01 Thread Jason
The only other alternative that comes to mind is maintaining a fork of django itself and overwriting the specific parts of `contrib.sites` that you need to modify. Because the third part libraries are so tightly integrated with that bit of django and I don't think there's a method to specify

Re: DB inconsistent writes.

2018-10-01 Thread Jason
check your db logs. I suspect this is a db issue and not django itself On Monday, October 1, 2018 at 5:13:40 AM UTC-4, Akshay Jain wrote: > > Yeah, this happens ~10% of times. Rest of the writes are perfect. > > On Mon, Oct 1, 2018 at 1:51 PM Vineet Kothari > wrote: > >> Please check whether

Does the "manifest_strict" attribute on "ManifestFilesMixin" work?

2018-10-01 Thread Chris Bergstresser
Hi all -- For some reason, I get a "Missing staticfiles manifest entry" even though the file it's complaining about is listed in the manifest. I don't get the error when DEBUG is turned on, and I'm not sure why. At any rate, I tried subclassing "ManifestStaticFilesStorage" and setting

Extending contrib.sites.get_current_site logic

2018-10-01 Thread Aubrey Falconer
What is the best-practice pattern to replace/extend functionality in django.contrib libraries? My use case in this instance is to add domain alias awareness to the contrib.sites library. I've already created a customized sites library that incorporates the additional model updates and logic

Django security release issued: 2.1.2

2018-10-01 Thread Carlton Gibson
Today the Django team issued 2.1.2 as part of our security process. This release address a security issue, and we encourage all users to upgrade as soon as possible: https://www.djangoproject.com/weblog/2018/oct/01/security-release/

Django bugfix releases 1.11.16 and 2.0.9

2018-10-01 Thread Carlton Gibson
Details are available on the Django project weblog: https://www.djangoproject.com/weblog/2018/oct/01/bugfix-releases/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: DB inconsistent writes.

2018-10-01 Thread Akshay Jain
Yeah, this happens ~10% of times. Rest of the writes are perfect. On Mon, Oct 1, 2018 at 1:51 PM Vineet Kothari wrote: > Please check whether the data serializong properly or not > > On Mon 1 Oct, 2018, 1:43 PM Akshay Jain, > wrote: > >> Hello, >> >> I'm facing a strange issue where in my

Re: DB inconsistent writes.

2018-10-01 Thread Vineet Kothari
Please check whether the data serializong properly or not On Mon 1 Oct, 2018, 1:43 PM Akshay Jain, wrote: > Hello, > > I'm facing a strange issue where in my django application sometimes the > data is not getting completely written to the DB. The entry is created but > some fields are not

DB inconsistent writes.

2018-10-01 Thread Akshay Jain
Hello, I'm facing a strange issue where in my django application sometimes the data is not getting completely written to the DB. The entry is created but some fields are not written -- Regards, Akshay Jain -- You received this message because you are subscribed to the Google Groups "Django

Re: Ldap for django

2018-10-01 Thread Vineet Kothari
Yup. But he got red headed for just a simple statement. Let me apologise man. On Mon 1 Oct, 2018, 1:34 PM soumyajit banerjee, wrote: > It's just typo mistake. > > On Friday, 31 August 2018 21:58:46 UTC+5:30, me.vineetkothari wrote: >> >> It is not lodap is ldap >> >> Sent from my Huawei Mobile

Re: Ldap for django

2018-10-01 Thread Akshay Jain
Hi Soumyajit, You can by-pass django's default authentication and use LDAP auth in its stead and keep the LDAP config files separate where you connect to the LDAP server. For ease of implementation I prefer using LDAP3 in place of django-ldap-auth. On Mon, Oct 1, 2018 at 1:34 PM soumyajit

Re: Ldap for django

2018-10-01 Thread soumyajit banerjee
It's just typo mistake. On Friday, 31 August 2018 21:58:46 UTC+5:30, me.vineetkothari wrote: > > It is not lodap is ldap > > Sent from my Huawei Mobile > > > Original Message > Subject: Ldap for django > From: soumyajit banerjee > To: Django users > CC: > > > Hi, > > I am new