Re: Cannot deploy Django project on Heroku from a Ubuntu 18.04 laptop

2018-10-22 Thread Gear Crew
without deploy run this page and show the same error On Monday, 22 October 2018 14:22:05 UTC+2, Mo-rema07 wrote: > > Hello people, > > Can I please get help? I am a noob using a Lenovo V110 running Ubuntu > 18.04. I am getting an error that I am using python 3.6.5 instead of > 3.6.6. However

configuration settings.py

2018-11-11 Thread Gear Crew
I want to understand why do that [image: Screenshot from 2018-11-11 18-09-56.png] -- 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: configuration settings.py

2018-11-11 Thread Gear Crew
when i can use it in any project? On Sunday, 11 November 2018 23:57:58 UTC+2, Mike Dewhirst wrote: > > On 12/11/2018 3:24 AM, Gear Crew wrote: > > I want to understand why do that > > Because Django needs to know which settings module to use so it can find > all

what's args parameter in reverse()

2018-09-26 Thread Gear Crew
what's the useful form args=''1" here and why use 1 not anything else def test_post_update_view(self): response = self.client.post(reverse('post_edit',args='1'),{ 'title':'Updated title', 'body':'Updated text', })Enter code here... -- You received this message

what's the difference between TemplateView, ListView and DetailView ?

2018-09-23 Thread Gear Crew
I want to know when I use TemplateView , ListView and DetailView on my template code -- 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: Sample Datbase data

2018-09-23 Thread Gear Crew
Please more explain about your issues On Friday, 21 September 2018 13:43:47 UTC+2, Sukla Nag wrote: > > Is it possible to download table data of sample databases in the tutorial ? > -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: hi friends am sending how to create a project in django with step by step. if you are satisfied please send me comments

2018-09-25 Thread Gear Crew
nice man the awesome pdf but I want to add more about urls , views, and link with model On Tuesday, 25 September 2018 19:48:12 UTC+2, Sudha Mohan wrote: > > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

Re: How does the django sites work

2019-01-18 Thread Gear Crew
what's your specific problem you are talk about Deploy site ??? On Friday, 18 January 2019 22:10:42 UTC+2, abel otugeme wrote: > > I am still learning django but I'd like to know how sites created are > hosted -- You received this message because you are subscribed to the Google Groups

Re: How does the django sites work

2019-01-18 Thread Gear Crew
when you learn automatic you know how does work and try read book is better than some videos because the it's not talk in details and so important learn form DOC Django On Friday, 18 January 2019 22:10:42 UTC+2, abel otugeme wrote: > > I am still learning django but I'd like to know how sites

Re: issue in hosting https://www.pythonanywhere.com

2018-12-25 Thread Gear Crew
Did you edit WSGI.py in pythonanywhere? On Tuesday, 25 December 2018 20:02:12 UTC+2, Brad Pitcher wrote: > > Atul, > Have you looked over the troubleshooting in > https://help.pythonanywhere.com/pages/DebuggingImportError ? It looks > like your web app is using a separate django installed to

Re: Not able to install Django in ubuntu 16.04

2018-12-21 Thread Gear Crew
Hello the first one show us your message errors and the second prefer use virtual environment like pipenv or virtualenv and hold on until solve your problem On Friday, 21 December 2018 15:34:00 UTC+2, Dr. Sandeep Singh Sengar wrote: > > Hi, > > I have tried lot to install Django framework from

Re: Looking for a Django Co-Founder.

2018-11-25 Thread Gear Crew
I am here i am interested i am 20 years old and not Pro in django but i'm still learning until die if you have any ideas I will be with you On Sunday, 18 November 2018 00:29:14 UTC+2, Zack Amaral wrote: > > Hi, > > I have an idea for a next generation PaaS. I was wondering if there are > any

Re: Forbidden (CSRF token missing or incorrect.)

2018-11-21 Thread Gear Crew
send us screenshot from issue On Wednesday, 21 November 2018 15:38:19 UTC+2, Rabah Saadi wrote: > > Hello, > > I've been using Django 2.2Dev for a while now, since April 2018, and it is > working just fine (I got my reasons why Django Dev). But since the last git > pull, it shows the CSRF

difference between class based view and function based view

2018-11-21 Thread Gear Crew
what is difference between class based view and function based view and which I choose to build full website -- 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

how to send data from form site page

2018-11-22 Thread Gear Crew
how to send data from form site page that has html form to model without using form model because I want to use HTML elements instead of elements in form model -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

Re: how to send data from form site page

2018-11-22 Thread Gear Crew
I want to edit style for form model like changing in default HTML tags On Thursday, 22 November 2018 16:53:54 UTC+2, Jani Tiainen wrote: > > Hi. > > I've really hard time to understand what you want to achieve. Could you > please give an example what you're after? > >

making sign up and login

2018-11-25 Thread Gear Crew
I want to know sign up and login or generally registration in Django if I build up in Django I have to associate that with admin page or that possible and when creating a new user from registration this data where will go in admin and create user automatic in admin or what ? -- You received

Re: inserting data in django using forms

2018-12-29 Thread Gear Crew
if you use class based view you can use Detailview, CreateView, DeleteView , UpdateView and call CRUD Django and I think is so easy from using Function based view On Saturday, 29 December 2018 23:26:36 UTC+2, Saeed Pooladzadeh wrote: > > Hello, > > For inserting and editing data in a database

Re: username on URL with Class Based Views

2018-09-12 Thread Gear Crew
Do you know what's the specific problem in my code? On Wed, 12 Sep 2018 at 22:05, Ricardo Cataldi wrote: > nice to be here again :D > > > This question is on stackoverflow, in here: > https://stackoverflow.com/questions/52302052/django-url-custom-parameters-on-base-class-view. > I have writen a