Ajay
?
Mirco
Ajay
Ohh I got
Ajay
U know any source plz share bro
Ajay
And can I use php?
Mirco
And can I use php?
Why do you wanna use it ??????
Ajay
Php support Cloud?
Mirco
Php support Cloud?
I think you are in the wrong place if u wanna use php
Ajay
I already used php and I did some
Ajay
But someone said ....if I use php it doesn't support Cloud
Ajay
I think you are in the wrong place if u wanna use php
Ohh bro plzzz can u explain what all technology I should use for back-end front end interface?
Mirco
Ohh bro plzzz can u explain what all technology I should use for back-end front end interface?
Python with Django for backend and a frontend library/framework for frontend ( css, js, HTML )
Ajay
I am going to store videos on cloud
Ajay
For this what I should do
Ajay
How can I fetch how can I store
Mirco
Store your videos on Amazon S3 for example
Mirco
How can I fetch how can I store
By studying how web works first
Ajay
I m using PHP for back and front end interface
Ajay
Php support for sending data to the cloud?
Ajay
Or retriving data from cloud
Ajay
?
Mirco
Man if u use php , this is not your place You are off topic
Ajay
Ohh sry
Arun
Hi Guys. I have issue where i authenticate user and the next redirected view has login decorated that still redirect (saying not authenticated ) https://i.imgur.com/aWXXnRS.png
Arun
https://i.imgur.com/GTv8Pqg.png
R
try share full traceback also
Anyways, it would be easier to use login views provided by django
Arun
This is the page i redirect but this decorator redirects back.
R
This is the page i redirect but this decorator redirects back.
http://ccbv.co.uk/projects/Django/2.1/django.contrib.auth.views/LoginView/
Arun
is this for django built in login ?
R
Yes
Arun
ill try this , But i would like to handle it in POST request .
Arun
https://i.imgur.com/9IwdOq7.png
R
https://docs.djangoproject.com/en/2.1/topics/auth/default/#module-django.contrib.auth.views here in docs
Arun
Thanks
Anonymous
hello,how to print the output data to same html page from which we requested using django?
disrupt_the_flow
https://github.com/florinpop17/app-ideas
Ildar
Hi, anybody knows info on import lib, that able to automatically discover values from foreignkeys, without using pk, i.e. to be alternative of using use_natural_foreign_keys=True and use_natural_primary_keys=True from django docs as described here https://docs.djangoproject.com/en/2.1/topics/serialization/#serialization-of-natural-keys ? Django-import-export ForeignKey Widget suggests only one key, alternate from pk here: https://django-import-export.readthedocs.io/en/latest/api_widgets.html#import_export.widgets.ForeignKeyWidget
Python2411
Hi
Python2411
I'm beginner in Django and I have a problem in the deployment of Saleor
Krishna Praneeth
hello is there anyone to helpme
Anonymous
Ask your question directly
Python2411
i have the problem w/the secret key. when I do python manage py migrate
Python2411
they say the secretkey is empty
Krishna Praneeth
Ask your question directly
https://pastebin.com/KrmyrUqY
Krishna Praneeth
https://pastebin.com/KrmyrUqY
in this code i didn.t understand ow manager model getting parent_obj from where it's getting
Anonymous
they say the secretkey is empty
Go to django settings and add one
Krishna Praneeth
hey is there anyone
Shekhar
show error message
Alexander
Did you tried use iPad's for Django web dev?
Sanjna
Hello Guys, I am Sanjna n i m looking forward to lear Django... So it will be grateful if you guys provide me some learning resouces for that.
Rohan
Also you can edit you messages* in telegram.
Anonymous
hello devs
Rohan
Hello
Ajay
Guys what is meant by bool is not callable error
Ajay
In django
inchidi
Guys what is meant by bool is not callable error
that means its boolean and its not callable
inchidi
🤔
Rohan
And it's not related to just Django
inchidi
Guys what is meant by bool is not callable error
Language: py3 Source: b = True b() Errors: Traceback (most recent call last): File "source_file.py", line 2, in <module> b() TypeError: 'bool' object is not callable
Ajay
What I should do
Darvesh
Don't call Boolean
inchidi
What I should do
have you ever learn python before?
Ajay
How to handle that error
inchidi
How to handle that error
find part of your code where you call boolean typed object and fix it
inchidi
Basics I kw
maybe you need to take more python tutorial? @pythonres
Rohan
How to handle that error
x = True try: x() except: pass