Jimmies San
X
I did....couldnt find it.
🏳️🌈Robby [ Private Message = Spam]
🏳️🌈Robby [ Private Message = Spam]
@RioticG don't PM me
X
@robbyoconnor I just asked u a permission to PM you.
X
the error comes after adding this line {% from "includes/_formhelpers.html" import render_field %}
🏳️🌈Robby [ Private Message = Spam]
X
how?
🏳️🌈Robby [ Private Message = Spam]
X
https://dpaste.de/sq5T
X
Got it! Thanks for trying
Dairon Ian
Hii
Dairon Ian
How can I to customize de AdminSite in Django?
Dairon Ian
Dairon Ian
I’m working on linux, so I need to find django directory, do you know how to?
🏳️🌈Robby [ Private Message = Spam]
pavi
🏳️🌈Robby [ Private Message = Spam]
@Inchidi
Dairon Ian
Sebastiao
This link is to Oracle cloud Group on Telegram
🏳️🌈Robby [ Private Message = Spam]
How???
What are you looking for? django is a python module...
Dairon Ian
I know, but I need to copy a template that is located at django directory
🏳️🌈Robby [ Private Message = Spam]
Anonymous
Dairon Ian
I did it
Open the console and write:
python3
import django
print(django.__path__)
Name
So, now I have Running gunicorn! But still the main page on the site is default Apache
Name
Could you help with that problem please
pavi
How???
locate django should work. The prerequiste is the DB should be updatedb which is done by updatedb. Sometimes locate is not installed by default so install mlocate and run updatedb and the command.
inchidi
thanks
🏳️🌈Robby [ Private Message = Spam]
Why no bot here
🏳️🌈Robby [ Private Message = Spam]
I mean if the bot comes — I'll probably be booted lol
inchidi
Why no bot here
coz 2 months ago this group already have 2k members but we only have <10 banned user
Name
Can anyone help please. Setup gunicorn- active, no errors; setup Nginx- active, no errors. But can’t load a site with host
inchidi
🏳️🌈Robby [ Private Message = Spam]
Name
Yes. Empty
Name
What logs do you need?
🏳️🌈Robby [ Private Message = Spam]
Yes. Empty
sure they are.
Name
I’m ready to provide them
Name
Yep. From env app
Name
Tell me what information do you need and I give it here
Name
I’ve broken my head with that
inchidi
inchidi
eh, share your nginx config and gunicorn config first
Miguel
Hey guys, someone has worked Django with GraphQL? specifically graphene-django?
Shubham
Hello guys how you are doing I got an error while registering the use
Shubham
user
Shubham
https://dpaste.de/Cs2M
Shubham
yes
🏳️🌈Robby [ Private Message = Spam]
Shubham
Your search - Exception Value: relation "allauth_emailaddress" does not exist - did not match any documents.
🏳️🌈Robby [ Private Message = Spam]
Shubham
its not showing anything as such
🏳️🌈Robby [ Private Message = Spam]
It's telling you — run the migrations
🏳️🌈Robby [ Private Message = Spam]
Stop and read the errors you get
Shubham
I read , what went wrong , its a allauth package
Shubham
what we can do in it
Shubham
so far I did
🏳️🌈Robby [ Private Message = Spam]
https://django-allauth.readthedocs.io/en/latest/installation.html
Did you even read the docs?
Shubham
same result
🏳️🌈Robby [ Private Message = Spam]
You skipped a step
satyam
Shubham
okay
🏳️🌈Robby [ Private Message = Spam]
@Snj1507 you skipped a stop — READ THEDOCS
Shubham
okay
Shubham
let me go once again
🏳️🌈Robby [ Private Message = Spam]
it's literally copy/paste
Shubham
yes
Shubham
resolved
Алишер
I have model Task with 2 fields:
started_at
ended_at
How to update all Tasks set started_at=ended_at where ended_at is not None and started_at is None?
I'm doing like this but cant access ended_at field:
Task.objects.filter(
~Q(ended_at=None),
Q(started_at=None)
).update(
started_at=????????
)
Jatin
Jatin