Re: Django

2019-12-19 Thread Jani Eric
thanks Bro ,,, you can do this On Tue, Dec 17, 2019 at 8:42 AM Hedrick Godson's wrote: > You may use twilio api. Its a 3rd party services. Then make a list of your > phone numbers and do loop > > On Tue, 17 Dec 2019, 15:12 Jani Eric wrote: > >> how to send sms from django website to mobile numb

Re: TeenagerStartups looking for Project Interns for Django/React Project

2019-12-19 Thread Roshan Shah
Interns get paid. On Wed., Dec. 18, 2019, 6:48 p.m. Durai pandian wrote: > will people get paid? if not, you should hire a freelancer. Non-disclosure > agreement and confidentiality with all these things, not mentioning intern > stipend. It doesn't feel right. > > On Thu, Dec 19, 2019 at 4:52 AM

Re: how to send to sms to moblie number on one click at time to 25 numbers from django website ,,,,,, please anyone here for guidance

2019-12-19 Thread Jani Eric
On Tuesday, December 17, 2019 at 5:31:46 AM UTC-8, Gil Obradors wrote: > > Hi Jani! > > > First you need a provider able to send SMS via rest-API > > Second,write some methods codes to talk to this api, python is good. > > Third, make a frontend, to call this methodos via web. You can start with

Re: how to send to sms to moblie number on one click at time to 25 numbers from django website ,,,,,, please anyone here for guidance

2019-12-19 Thread Jani Eric
you know all of that procedures if you then i need your help if you have time On Tuesday, December 17, 2019 at 5:31:46 AM UTC-8, Gil Obradors wrote: > > Hi Jani! > > > First you need a provider able to send SMS via rest-API > > Second,write some methods codes to talk to this api, python is go

Re: how to send to sms to moblie number on one click at time to 25 numbers from django website ,,,,,, please anyone here for guidance

2019-12-19 Thread Jani Eric
thanks to all of you On Thursday, December 19, 2019 at 1:00:14 AM UTC-8, Jani Eric wrote: > > you know all of that procedures if you then i need your help if you have > time > > > On Tuesday, December 17, 2019 at 5:31:46 AM UTC-8, Gil Obradors wrote: >> >> Hi Jani! >> >> >> First you need a pr

Re: TeenagerStartups looking for Project Interns for Django/React Project

2019-12-19 Thread sagar ninave
how much intern will get paid, and what if experienced person is interested will he get paid and how much ? On Thu, Dec 19, 2019 at 2:20 PM Roshan Shah wrote: > Interns get paid. > > On Wed., Dec. 18, 2019, 6:48 p.m. Durai pandian wrote: > >> will people get paid? if not, you should hire a fre

How to call the Django-Admin style of providing much with less code

2019-12-19 Thread guettli
Just for the records, I asked at StackOverflow how to call this cool way of the django admin interface. It is a mixture of configuration and optionaly some coding sugar. See: https://stackoverflow.com/questions/59289596/how-to-call-the-django-admin-style-of-providing-much-with-less-code If som

Understanding of GIL

2019-12-19 Thread onlinejudge95
Hi Devs, I am currently writing some custom Django commands for data updation, my workflow is like Fetch data from *PostgreSQL*. Call *Elasticsearch* for searching based on the data fetched from *PostgreSQL*. Query *PostgreSQL* and do an upsert behavior. I am using pandas data frame to hold my da

How can we achieve backend continuously updating front end ?

2019-12-19 Thread sowmya
In views.py function computes and results in lakhs of records. For this computation in the back-end taking lots of time. I want to know a mechanism in which I can update to front end after processing 1000 records and mean while in the background the processing continues and again it will update

How do i add style to my django admin

2019-12-19 Thread Lasisi Habeeb
when i ran my django server using django manage.py runserver and ran 127.0.0.1:8000/admin on my web browser it prompt the django admin site but without styles -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and s

Re: How can we achieve backend continuously updating front end ?

2019-12-19 Thread Suraj Thapa FC
Yes.. Use django channels or ajax polling On Thu, 19 Dec 2019, 8:03 pm sowmya, wrote: > In views.py function computes and results in lakhs of records. For this > computation in the back-end taking lots of time. I want to know a mechanism > in which I can update to front end after processing 1000

FieldError at / Django models how to reslove this issue....

2019-12-19 Thread MEGA NATHAN
Hi all. Cannot resolve keyword 'published_date_lte' into field. Choices are: author, author_id, comments, create_date, id, published_date, text, title this are models: from django.db import models from django.utils import timezone from django.urls import reverse # Create your models here.

Update value in database

2019-12-19 Thread Nuno Vieira
Hi! I have a real estate django app and i have a form to users insert a new property. I also have in the form several images fields that users can use to upload images to database whitout problem. The problem is if the *user want to delete one of the images field.* I have an ajax request that

Re: django.urls.exceptions.NoReverseMatch

2019-12-19 Thread Jorge Gimeno
On Wed, Dec 18, 2019, 10:20 PM Chetan Rokade wrote: > Hi Friends, > getting below error : > "django.urls.exceptions.NoReverseMatch: Reverse for 'EditChange' not > found. 'EditChange' is not a valid view function or pattern name." > > I have removed EditChange tag/string from all files in my proje

Re: django.urls.exceptions.NoReverseMatch

2019-12-19 Thread Miracle
Check your codes very well ' editChange' might still be there. On Thu, 19 Dec 2019, 5:55 pm Jorge Gimeno, wrote: > > > On Wed, Dec 18, 2019, 10:20 PM Chetan Rokade > wrote: > >> Hi Friends, >> getting below error : >> "django.urls.exceptions.NoReverseMatch: Reverse for 'EditChange' not >> found

Re: FieldError at / Django models how to reslove this issue....

2019-12-19 Thread Simon Charette
You are missing an underscore here. It should be published_date__lte and not published_date_lte. Cheers, Simon Le jeudi 19 décembre 2019 11:40:05 UTC-5, MEGA NATHAN a écrit : > > Hi all. > > Cannot resolve keyword 'published_date_lte' into field. Choices are: author, > author_id, comments, crea

Re: How do i add style to my django admin

2019-12-19 Thread amin ghaemi
hi , first you need to reinstall django : type this command in cmd: pip uninstall django pip install django and for runserver type this command : python maange.py runserver if you have problem get screenshot and send to me On Thu, Dec 19, 2019 at 6:02 PM Lasisi Habeeb wrote: > when i ran my dj

Re: How do i add style to my django admin

2019-12-19 Thread ramadhan ngallen
Did you override settings.py Debug=False? Best Regards Ramadhan Ngallen Software Consultant Phone: +255 715 200 997 | ngall...@gmail.com On 19 Dec 2019, 21:16 +0300, amin ghaemi , wrote: > hi , first you need to reinstall django : > type this command in cmd: > > pip uninstall django > pip insta

Re: FieldError at / Django models how to reslove this issue....

2019-12-19 Thread Jack Lin
FYI, you can check this documentation for double underscore in Django. -- Jack Lin 在 2019年12月20日 於 上午1:28:29, Simon Charette (charett...@gmail.com) 寫下: You are missing an underscore here. It should be published_date

Changing to a custom user model mid-project

2019-12-19 Thread Mike Dewhirst
I'm documenting[*] the process I followed but have come to a gray area and need some expert assistance. Having achieved a working system with a new database table containing all the existing data and now called ...     public.common_user ... I notice that it has a user_id sequence called ...