boingo-00
I am a fool
boingo-00
LOCALE_PATHS = [ './locale' ] made all wark
Anonymous
I want multiple user types What is the best method 1. Create custom decorator for each user type 2. Use group required decorator and create group in django admin
Akshay
Hello, I am new to Python, Django. I have few queries about Django. Read articles on internet, but confusing. Need real world answers from experienced folks like you. Compared to other front end frameworks like NodeJS, AngularJS, what is scope of DJango? Does Django used in Enterprise level applications? What is scope of Django in banking, Hedge Fund applications? What is django scope in freelancing?
cj
Hello, I am new to Python, Django. I have few queries about Django. Read articles on internet, but confusing. Need real world answers from experienced folks like you. Compared to other front end frameworks like NodeJS, AngularJS, what is scope of DJango? Does Django used in Enterprise level applications? What is scope of Django in banking, Hedge Fund applications? What is django scope in freelancing?
- you can't compare Django to NodeJS nor AngularJS, Django is a back-end framework - yes, Django is used at enterprise level applications - you can do almost whatever you want with Django, as long as you know what you're doing - the same ☝️ (edit after some minutes and actions) and last but not least - don't F*** send me private messages 🖕
Anonymous
Which website is good for learning django
Doragonsureiyā
Which website is good for learning django
Looking for Django tutorials? you can follow these three recommended ones: * Official documentation and tutorial * Tutorial from MDN * Tutorial from django-girls
myii
Question about navigating forms using the Tab key in the Django Admin (using Django Grappelli — not sure if the standard Admin suffers from this issue): while tabbing through the form, you can reach form elements that are hidden by the footer with the Save buttons. Have to scroll manually before you can continue input. Any ideas on how to get around this?
myii
Alright, thanks for the response.
Anonymous
I need to personalise some variable in settings.py file e.g. EMAIL_HOST_USER or DB user/password etc. I dont want to set them manually inside a code, i want they would be grabbed as environment variable or sth. Also, this setting should me set once and permanently, like with input(‘Enter username:’) or sth. What is the best practice for such functionality?
cj
or a much better package, and the one I use on my Django projects, django-environ: https://django-environ.readthedocs.io/en/latest/
Anonymous
Thats awesome package, thanks.
Anonymous
How we can do multiple select in django
Anonymous
Anyone please help
Anonymous
Multiple means?
Means we select multiple in selection field
#
Choices field?
#
Give it clear explanation about ur question please ?
Jaydeep
How to create dynamic tables in database by getting values from html page in django?
Anonymous
See i have show photo for this please come online
Franck
Good morning please how to implement foget password ?
boingo-00
Good morning please how to implement foget password ?
Lok at MDN Django tutorial, it has reset form
Anonymous
hi guys ı want to filter in model how many produdct ?
Anonymous
how can ı do
Anonymous
Can anyone tell me that how django's localhost will get accessible by two computers using Ngrok ?? It gives me allowed host error..
boingo-00
how can ı do
product.objects.filter(howmany=5) You can use variable instead of 5
Anonymous
ı think here 10 pieces product
Anonymous
ı need piceses
Anonymous
ı need to return
boingo-00
You need filter form on page?
Anonymous
ı have model mate, in model 10 or 100 or 1000 product
Anonymous
ı need filter how maney product here
Anonymous
ı wanna back to user this information
*( (*
Django is difficult
boingo-00
no
sohrab
from index.models import MenuIndex from index.models import CenterIndex # Create your views here. def index(request, template_name='base.html'): index = MenuIndex.objects.all() data = {} data['object_list'] = index return render(request, template_name, data) def CenterIndex(request, template_name='base.html'): CenterIndex = MenuIndex.objects.all() data = {} data['object_list'] = CenterIndex return render(request, template_name, data) hi good day I in code in view write but error (IndentationError: unindent does not match any outer indentation level) What do you think? help please me
Алексей
Hello! I have a question. I have a django and telegram bot, that works through long polling. How do i run while true getUpdates inside django?
Алексей
or should I run it in a separate process ?
sohrab
Yes, yes, but I'm in the middle of the project. I found this problem and wanted to fix my problem sooner...
Алексей
how i can test in local env ?
Azerty
Алексей
this is genius))
sohrab
How to Create a Virtual Environment for your Django Projects Using virtualenv | HostAdvice https://hostadvice.com/how-to/how-to-create-a-virtual-environment-for-your-django-projects-using-virtualenv/
sohrab
how i can test in local env ?
https://hostadvice.com/how-to/how-to-create-a-virtual-environment-for-your-django-projects-using-virtualenv/
A
I want to learn about thread pools in Django ,can anyone help with that ?
Naynesh
how to get data if manytomanyfield and file also added so how to read
Praful
any one suggest me which website best for learn django
Arulmurugan
any one suggest me which website best for learn django
It is always best to start with Django's official documentation tutorial.
Altaf
any one suggest me which website best for learn django
You can start learning from here.. http://www.teachmebro.com/tutorial/django
Altaf
You can start learning from here.. http://www.teachmebro.com/tutorial/django
I have created this tutorial for beginners to learn and understand django
Altaf
Its free😊
#
How to kill and get rebirth ...?
Anonymous
Hello, how to display the part of the table stored in the database?
#
Part of table meant ?
Anonymous
Part of table meant ?
And this table is made using django models.
Anonymous
Hello, how to display the part of the table stored in the database?
So I need to display the entire table on the site except 1 and 2 columns
ᐯᑌᏞᏦᗩᑎ📈
what is the difference between UpdateView and ModelForm?
ᐯᑌᏞᏦᗩᑎ📈
pls answer
#
Otherwise wait for other or googl
ᐯᑌᏞᏦᗩᑎ📈
lol
Anonymous
Hi guys any problem if i will learning Django by Django v2 course ?
Anonymous
Shiva
guys same csrf token is setting for all user , how to set different csrf token for different users
cj
guys same csrf token is setting for all user , how to set different csrf token for different users
you don't really need to care about csrf token, it's useless for you
cj
i am getting csrf verfication failed error
what are you actually doing? and what do you really want to do?
Shiva
what are you actually doing? and what do you really want to do?
i have created form to get some input from users on submit i want to save the request
Altaf
i am getting csrf verfication failed error
Add csrf token into your form....{{ csrf_token }}