Re: Deploying an app on heroku

2020-11-22 Thread programmer 262
020, 6:46 PM programmer 262 > wrote: > >> hy guys i want to deploy my app on heroku and i having a bad time this is >> the website that i deployed >> https://khadijaoumelmouminine.herokuapp.com/ >> if someone could help me on deploying it. i will be very GLADE and i wi

Re: Deploying an app on heroku

2020-11-11 Thread programmer 262
020 at 12:46 AM programmer 262 > wrote: > >> hy guys i want to deploy my app on heroku and i having a bad time this is >> the website that i deployed >> https://khadijaoumelmouminine.herokuapp.com/ >> if someone could help me on deploying it. i will be very GLADE and

Re: Deploying an app on heroku

2020-11-03 Thread programmer 262
thanks a lot man i already deployed it but thanks i appreciate it Le sam. 31 oct. 2020 à 23:54, Ayser shuhaib a écrit : > please set debug value to True then deploy, that will allow us to see what > is causing the server error > > On Sun, Nov 1, 2020 at 12:46 AM programmer

Deploying an app on heroku

2020-10-31 Thread programmer 262
hy guys i want to deploy my app on heroku and i having a bad time this is the website that i deployed https://khadijaoumelmouminine.herokuapp.com/ if someone could help me on deploying it. i will be very GLADE and i will be very thankful if someone can talk to me on facebook

Re: deploying a django project

2020-09-09 Thread programmer 262
eo. >>> https://youtu.be/6DI_7Zja8Zc >>> >>> On Tue, Sep 8, 2020, 2:36 AM programmer 262 >>> wrote: >>> >>>> hy guys i start learning django and i build a ecommerce website as >>>> myfirst project and i don't know ho

deploying a django project

2020-09-07 Thread programmer 262
hy guys i start learning django and i build a ecommerce website as myfirst project and i don't know how to deploy it in heroku -- 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,

Whatsap group for best practices

2020-02-18 Thread Infinity Programmer
Join expert's Python developer whatsapp group Follow this link to join my WhatsApp group: https://chat.whatsapp.com/HHN5GoV27mM4TXKcqPf0ES Follow this link to join my WhatsApp group: https://chat.whatsapp.com/HHN5GoV27mM4TXKcqPf0ES Follow this link to join my WhatsApp group:

Re: field not editable after saving the first record

2020-02-12 Thread Infinity Programmer
https://youtu.be/8IQuhH50bqc https://youtu.be/8IQuhH50bqc https://youtu.be/8IQuhH50bqc https://youtu.be/8IQuhH50bqc Please refer this video On Wednesday, January 15, 2020 at 11:04:25 PM UTC+5:30, Harold A wrote: > > Hi everyone > I require your contributions to do the following. > > I have a

Django images to pdf conversion

2020-02-12 Thread Infinity Programmer
Dear folks You have to easily know them https://youtu.be/8IQuhH50bqc https://youtu.be/8IQuhH50bqc -- 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

Hey Folks Quick conversion of images to PDF

2020-01-22 Thread Infinity Programmer
Hi Folks Iam uploaded video for convert images to pdf using python script please sunscribe and share https://youtu.be/8IQuhH50bqc https://youtu.be/8IQuhH50bqc https://youtu.be/8IQuhH50bqc -- You received this message because you are subscribed to the Google

Re: how to add the html and css

2019-10-02 Thread The Programmer
create file css, and import in your index.html Le mercredi 2 octobre 2019 10:49:06 UTC+1, challa.Harikrishna chowdary a écrit : > > In djnago how to add the html and css in my project > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: why is a text not displayed?

2017-12-21 Thread pradam programmer
Change to this: path('^$', views.index, name='index'), On Thu, Dec 21, 2017 at 5:21 PM, wrote: > I made this along a tutorial. > However > > "Hello, world. You're at the blog index." > > is not displayed. > > """blog/views.py""" > from django.http import HttpResponse >

Re: No Reverse Match Exception

2017-12-17 Thread pradam programmer
>From this: Update Change to this: Update On 17-Dec-2017 2:00 PM, "yingi keme" wrote: > The problem is that, it works perfectly when i put the number on the > template like this > > Update > > But when i do > > Update > > It gives the No Reverse Error. I dont seem to

Re: typeerror : context must be a dict rather than Context.

2017-12-12 Thread pradam programmer
c = template.Context({'now': now}) html = t.render(c) # Just pass {'now': now} instead of c On Tue, Dec 12, 2017 at 5:08 PM, Al Scham wrote: > Hi, > > I'm am new to django and am workng through the OverIQ tutoiral at : >

Re: Converting any Graphical Chart(pie-chart, gantt chart) into image dynamically.

2017-11-27 Thread pradam programmer
Thanks alot Derek..I will try this package. On 27-Nov-2017 7:45 PM, "Derek" wrote: > Try reportlab: > > https://docs.djangoproject.com/en/1.11/howto/outputting-pdf/ > #write-your-view > https://www.blog.pythonlibrary.org/2016/02/18/reportlab-how- > to-add-charts-graphs/ >

Converting any Graphical Chart(pie-chart, gantt chart) into image dynamically.

2017-11-27 Thread pradam programmer
Hi Guys, I want to convert an graphical chart,for an Ex: pie-chart,gantt chart into an image in a real time and display it in a PDF Document dynamically. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: How to get JOSN Field key value using values()

2017-06-08 Thread pradam programmer
Hi Mallik, Write a Custom Method to do it. On Thu, Jun 8, 2017 at 3:21 PM, Mallik Sai wrote: > I have a JSON Field in my model and I want to get a particular Key value > which is present in the JSON Field using values(). > > lets assume my JOSN Field data is like {

Deactivate the Child Objects when parent is deactivate.

2017-05-28 Thread pradam programmer
from django.db.models import QuerySet import attr from attr.validators import instance_of @attr.s class ChildDeactivate(object): loca = attr.ib(validator=instance_of(QuerySet)) def deactivate_child(self,l): get_parent = Boundary.objects.filter(parent__id=l.id) if

Re: it says there is no module django when im trying to configure urls. please help

2017-04-20 Thread pradam programmer
Hi Anusha, Make sure django is package is installed. On Fri, Apr 21, 2017 at 3:15 AM, sri anusha wrote: > C:\Users\srian\AppData\Local\Programs\Python\Python36\python.exe > C:/Users/srian/internship/polls/urls.py > Traceback (most recent call last): > File

Re: Django allauth, manage redirect

2017-02-07 Thread pradam programmer
Hi, add this line in settings.py: LOGIN_REDIRECT_URL = "/my-tasks/" On Tue, Feb 7, 2017 at 2:09 PM, Branko Zivanovic < international11...@gmail.com> wrote: > I'm using django-allauth for authentication. I've enabled Facebook and > Google for social logins. How do I make redirect after first

Re: New to the community

2017-02-07 Thread pradam programmer
hi, you can try this video tutorials its easily understandable https://www.youtube.com/playlist?list=PLEsfXFp6DpzQFqfCur9CJ4QnKQTVXUsRy On Tue, Feb 7, 2017 at 12:31 PM, Antonis Christofides < anto...@djangodeployment.com> wrote: > Hello, > > except for Django's official tutorial, which is

Re: Aggregation and following relationships backwards multiple levels

2017-02-01 Thread pradam programmer
Hi Patrick, you can do like this: def total(self): return ContractItem.objects.filter(contract__subbudget__budge__in= self.budget_set.all()).aggregate(Sum('total'))['total__sum'] try like this..! On Wed, Feb 1, 2017 at 7:14 PM, Patrick Joy wrote: > Hi all, > >

Re: Aggregation and following relationships backwards multiple levels

2017-02-01 Thread pradam programmer
from django.db.models import Q def total(self): subbudgets = SubBudget.objects.filter() contracts = Contract.objects.filter(subbudget__in=subbudgets) return ContractItem.objects.filter(contract__subbudget__budget__in=self.budget_set.

I want some guidance on Comments Table Structure

2017-01-11 Thread pradam programmer
Hi, I'm creating the Generic model for Comments i have following scenerios: 1. Comments conversion should happen between one to one. 2. Comments should show based on particular programs id. thank you. -- You received this message because you are subscribed to the Google Groups "Django users"

Re: What is the best combination of components to be used with Django on Windows 10?

2017-01-03 Thread pradam programmer
hi, Please Refer this Link https://www.toptal.com/django/installing-django-on-iis-a-step-by-step-tutorial On Mon, Dec 26, 2016 at 3:28 PM, James Bennett wrote: > On Mon, Dec 26, 2016 at 1:31 AM, Avraham Serour wrote: > >>

Re: understanding auth models

2017-01-02 Thread pradam programmer
Hi, Read the django doc about auth user they have specified thoroughly On 2 Jan 2017 7:48 pm, "Rasika" wrote: Hi, whenever I created the account for user using built in admin it get stored into auth_user tablein the database.Where I can find the code for this

Happy New Year 2017

2016-12-31 Thread pradam programmer
Happy New Year Guys, i hope this year fill with alot of love, happiness and Joy to everyone. -- 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: Django stops working with RuntimeError: populate() isn't reentrant

2016-12-23 Thread pradam programmer
isn't reentrant On Fri, Dec 23, 2016 at 1:46 PM, Babatunde Akinyanmi <tundeba...@gmail.com> wrote: > How about the stack trace? > > On 22 Dec 2016 16:43, "pradam programmer" <pradam.programm...@gmail.com> > wrote: > >> I restarted hundred times stil

Re: starting django

2016-12-22 Thread pradam programmer
just correct pools to polls in url On Thu, Dec 22, 2016 at 9:59 PM, Giovanni Oliverio wrote: > > Hello, I'm following the guide at the following link: > https://docs.djangoproject.com/en/1.10/intro/tutorial01/ but when I go to > call the page: http://localhost:8000/polls/

Re: Django stops working with RuntimeError: populate() isn't reentrant

2016-12-22 Thread pradam programmer
I restarted hundred times still can't able to rectify it On 22 Dec 2016 9:07 pm, "ADEWALE ADISA" <solixzsys...@gmail.com> wrote: Restart the server On Dec 22, 2016 4:27 PM, "pradam programmer" <pradam.programm...@gmail.com> wrote: > Hi Guys, > I am u

Django stops working with RuntimeError: populate() isn't reentrant

2016-12-22 Thread pradam programmer
Hi Guys, I am unable to rectify this error I am doing the following things: 1. I am running the project in django 1.7 later upgraded to 1.7.11 to check whether I fix the issue but no use. :( 2. In settings.py I commented the allowed_host = [*] still no use :( I don't know why this error is

Re: URLPatterns and QueryStrings

2009-06-07 Thread The Devil's Programmer
Note that on the 6th line where I typed - def search_page(request, search="", page=1): I actually meant - def search_page(): Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To