Need Help In My Project (URGENT)

2020-04-22 Thread 'raghav' via Django users
My name is Raghav and I am a final year student. I want a project for my final semester, the subject of which is the *"Courier Management System"*, I am not able to complete my project on time due to any problem. The problem is that I can no longer go to the institution where I was training.

what happens to channels consumer instance after disconnect

2020-04-22 Thread BR
What happens to a consumer instance after a websocket client disconnects? Is there any specific cleanup of the instance done, or just regular garbage collection? Is it possible to reconnect to a channels consumer instance to recover the state of that instance? -- You received this message

Re: Tutorial "Writing your first Django App": NoReverseMatch at /polls/ - down at the end of part 3

2020-04-22 Thread Awa M. Kinason
You are having an error on your template. {%url 'polls:detail' question.id%} instead of {% url 'polls:detail' question.id %} Take note of the space after or before the percentage sign. Django Templating Engine requires you to respect the rules. If you even add double spaces where you are supposed

Re: hosting django app on app engine

2020-04-22 Thread Aldian Fazrihady
Hi Anirudh, Does this link show you any meaningful error message: https://console.cloud.google.com/errors?time=PT1H=COUNT_DESC=OPEN=ACKNOWLEDGED=anirudhmalik-274008=1=true=true ? On

Re: hosting django app on app engine

2020-04-22 Thread VenkataSivaRamiReddy
Hi can you share any reference link. I am looking for deploy my djanago application but I don't know how to deploy On Wed, Apr 22, 2020, 18:44 Anirudh choudhary wrote: > hi to all! I am hosting my blogging app on google app engine in a standard > environment. the website deploys successfully.

Re: Tutorial "Writing your first Django App": NoReverseMatch at /polls/ - down at the end of part 3

2020-04-22 Thread sahil khan
Plz go on my you tube channel you will get your error regarding sollution on my channel Link : https://www.youtube.com/channel/UCxxPBCkto7W8MX6TMctgLqw On Sun, 19 Apr 2020, 7:49 pm Jorge Gimeno, wrote: > If settings.DEBUG == False, then you have to put the allowed addresses > in

Re: Django Error - 'staticfiles' is not a registered tag library. Must be one of: admin_list admin_modify admin_urls

2020-04-22 Thread sahil khan
If you have this type of problem plz connect or join our you tube channel 'errormania' and comment whatever your errors problem i will make a video on particular error Link: https://www.youtube.com/channel/UCxxPBCkto7W8MX6TMctgLqw On Sun, 19 Apr 2020, 7:09 am rama prakash y, wrote: > THANK YOU

ORM

2020-04-22 Thread Jayesh Prajapati
Hello World, I have doubt for that's why I come here. If one can clear my doubt it would be so helpful. Suppose, I have a table 3 table with foreign key of in each table. Table 1 FK of table 2 Table 2 FK of table 3 Table 3 FK of another table Now, what I am doing is t1 =

Re: Django pdfs

2020-04-22 Thread Lunga Baliwe
Maybe you can check Django FileField for upload and check what it looks like on the admin side. On Wed, Apr 22, 2020 at 6:09 PM Hella Nick wrote: > me to。do you help me? > > Perceval Maturure 于2020年4月22日 周三07:31写道: > >> Hi

Re: Django pdfs

2020-04-22 Thread Hella Nick
me to。do you help me? Perceval Maturure 于2020年4月22日 周三07:31写道: > Hi Django Users > > I am developing a Django document management system which will cater for > pdf file uploads. What is the best resource to use (tutorial) as I want to > have the pdfs accessible from admin. Can I do this with

Re: How can I use Django

2020-04-22 Thread Anonymous Patel
https://www.youtube.com/channel/UCxxPBCkto7W8MX6TMctgLqw Here is Developers community where you can ask for videos of your errors or how to start with django they provide videos in a day or two so try commenting your problem there or join there telegram channel with same name errormania. They are

Re: Reg: Django signal not working

2020-04-22 Thread Jorge Gimeno
On Wed, Apr 22, 2020 at 4:55 AM 'Amitesh Sahay' via Django users < django-users@googlegroups.com> wrote: > Hello Sahil, > > Thank you for the youtube link. The video has done the exactly same thing > that I am doing. However, I understand that the user registration is > created through default

Re: How can I use Django

2020-04-22 Thread Motaz Hejaze
Please checkout the official documentation On Wed, 22 Apr 2020, 3:21 pm saifadnan abdallah, < saifadnanabdal...@gmail.com> wrote: > In which Computer app can I use Django > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe

How can I use Django

2020-04-22 Thread saifadnan abdallah
In which Computer app can I use Django -- 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 view this discussion on

Can I use Django for client-server communication ?

2020-04-22 Thread Sharanagouda Biradar
HI, I have developed a python application(GUI using Tkinter) which triggers python test scripts automatically and gives the result But now I want to launch this GUI App on multiple machines using a single machine(something like server-client model), also I want to set required config

hosting django app on app engine

2020-04-22 Thread Anirudh choudhary
hi to all! I am hosting my blogging app on google app engine in a standard environment. the website deploys successfully. but when I try to go to any other URL like anirudhmalik.in to anirudhmalik/blog/list/ it shows me 500 server error on the server side I am using PostgreSQL instance and the

Setting up Stripe Intentions

2020-04-22 Thread John McClain
Hello all, I have an active stripe account configured and running live in my app. I am wanting to change the default currency and was wondering if anyone could help with setting up the intention to accomplish this. I have tried a few times and am unable to get past the errors. I have reverted

Re: Reg: Django signal not working

2020-04-22 Thread 'Amitesh Sahay' via Django users
Hello Sahil, Thank you for the youtube link. The video has done the exactly same thing that I am doing. However, I understand that the user registration is created through default "User" model, and UserCreationForm. However, I am adding a custom field "city", and its not working for me.  Except

Re: Whats the best package for Django-admin styling

2020-04-22 Thread Andréas Kühne
Hi, I think grappelli does a great job regarding styling the admin pages - I use it all the time. It is also (currently) actively developed. However there are other solutions: https://djangopackages.org/grids/g/admin-interface/ The main thing I would look for is to make sure that the package I

Re: Expecting JSON object instead of JSON Array

2020-04-22 Thread Andréas Kühne
You are doing a get to the default route for the viewset I am guessing? That would return a list - because you are getting ALL records and not one specific record. If you added more records to the database you will also see more in the list. See here for more information: