Re: Help on Creating a Superuser account on render.

2024-04-11 Thread ALINDA Fortunate
Thanks so much for your assistance indeed the issue was I had failed to visualise my data on railway since I am using an external database. A friend helped understand that and now I am able to access my admin panel. Thanks everyone. On Wed, 10 Apr 2024, 19:59 Luis Zárate, wrote: > Maybe

Re: Help on Creating a Superuser account on render.

2024-04-10 Thread Luis Zárate
Maybe something like python manage.py shell -c "from django.contrib.auth.hashers import make_password;from django.contrib.auth.models import User; admin = User(username='username', email='exam...@example.com', password=make_password('password'), is_superuser=True,is_staff=True);admin.save()"

Re: Help on Creating a Superuser account on render.

2024-04-07 Thread ALINDA Fortunate
It's my external database is postgres on railway. Let me try your opinion and I see. On Sat, 6 Apr 2024, 20:33 Aniket Raj Singh, wrote: > So you have used render to host your application, you might have connected > an external database (postgreSQL or any other) you might have used the >

Re: Help on Creating a Superuser account on render.

2024-04-06 Thread Aniket Raj Singh
So you have used render to host your application, you might have connected an external database (postgreSQL or any other) you might have used the environment setup to set the database up with the postgreSQL hosted either on render itself or on a different server, just connect the database with

Help on Creating a Superuser account on render.

2024-04-06 Thread ALINDA Fortunate
Hello I have successfully a django project on render but i have failed to access the admin panel Any idea on how to create a superuser account on a free tier of render Below is my build.sh file #!/usr/bin/env bash # Exit on error set -o errexit # Modify this line as needed for your package

Re: ANYONE CAN HELP ME

2024-04-03 Thread Miroslav Milic
On Tue, Apr 2, 2024 at 7:20 PM arts maxwell Anderson < arts.mawellanderson@gmail.com> wrote: > hello i have this error , i want to uppload multiple django image > ValueError: FileInput doesn't support uploading multiple files. > any one can help me > > class

ANYONE CAN HELP ME

2024-04-02 Thread arts maxwell Anderson
hello i have this error , i want to uppload multiple django image ValueError: FileInput doesn't support uploading multiple files. any one can help me class FormImages(ModelForm): multiple_image= forms.ImageField(widget=forms.FileInput(attrs= { 'multiple': True})) class Meta

Re: Help on Django_allauth Login Page

2024-03-08 Thread ALINDA Fortunate
Thank you for your response, okay let me try it On Fri, Mar 8, 2024 at 5:48 PM Muhammad Juwaini Abdul Rahman < juwa...@gmail.com> wrote: > It's part of LoginForm in django_allauth: > https://github.com/pennersr/django-allauth/blob/main/allauth/account/forms.py#L146 > > You can subclass LoginForm

Re: Help on Django_allauth Login Page

2024-03-08 Thread Muhammad Juwaini Abdul Rahman
It's part of LoginForm in django_allauth: https://github.com/pennersr/django-allauth/blob/main/allauth/account/forms.py#L146 You can subclass LoginForm and omit that part. On Fri, 8 Mar 2024 at 22:34, ALINDA Fortunate wrote: > Hello colleagues, I have the following code for my login page using

Help on Django_allauth Login Page

2024-03-08 Thread ALINDA Fortunate
Hello colleagues, I have the following code for my login page using django_allauth but it outputs the *forgot password?* link. How do I edit this? {% extends "_base.html" %} {%load crispy_forms_tags%} {% block title %}Log In{% endblock title %} {% block content %} Log In {% csrf_token%}

Re: Need help in python Django project "online train ticket booking system"

2024-02-22 Thread Daniel Martinez
Hello, what is the problem you are experimenting? Canyou please provide code? On Mon, Feb 19, 2024, 9:21 AM Surya Santhosh wrote: > Need help in python Django project "online train ticket booking system" > > -- > You received this message because you are subscribe

Re: Need help in python Django project "online train ticket booking system"

2024-02-21 Thread Fasila Ali
I am Interested On Mon, 19 Feb 2024, 9:51 pm Surya Santhosh, wrote: > Need help in python Django project "online train ticket booking system" > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > T

Need help in python Django project "online train ticket booking system"

2024-02-19 Thread Surya Santhosh
Need help in python Django project "online train ticket booking system" -- 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 d

Re: Need help setting up my Django environment

2024-02-18 Thread kge...@gmail.com
https://stackoverflow.com/questions/70347099/error-installing-a-django-project-attrributeerror-module-collections-has-no-a > > Supports what Mordecai Etukudo said about version incompatability. > > *Type "help", "copyright", "credits" or "licen

Re: Need help setting up my Django environment

2024-02-18 Thread kge...@gmail.com
Saw this on stack overflow: https://stackoverflow.com/questions/70347099/error-installing-a-django-project-attrributeerror-module-collections-has-no-a Supports what Mordecai Etukudo said about version incompatability. *Type "help", "copyright", "credits" or

Re: Need help setting up my Django environment

2024-02-17 Thread Mordecai Etukudo
Comment you model. Py and the run if you still have the issue not this is to fine how where the issue if from On Sat, Feb 17, 2024, 1:38 PM Brigid Sang wrote: > I'm encoutering the below error, how can I fix this > > Traceback (most recent call last): > File

Need help setting up my Django environment

2024-02-17 Thread Brigid Sang
I'm encoutering the below error, how can I fix this Traceback (most recent call last): File "/home/brigid/.local/bin/django-admin", line 8, in sys.exit(execute_from_command_line()) ^^^ File

Django project website UX: call for help!

2024-02-03 Thread 'Niccolò Mineo' via Django users
Hello everyone, at 20tab we just finished collaborating with the Django Software Foundation to improve the Django project website's accessibility and usability. We now need you to help us understand how involved people are in the Django project and how much they care for good UX. Fill out

help

2023-12-22 Thread Abdoulaye SENE
hello i am using docker. after building, i see this mistake "ERROR: failed to solve: python:3.9-alpine3.13: failed to authorize: failed to fetch oauth token: unexpected status from GET request to h ttps://auth.docker.io/token?scope=repository%3Alibra" -- You received this message because you

Re: Help with DRF error

2023-12-16 Thread Larry Martell
On Sat, Dec 16, 2023 at 1:10 PM Reddy Tintaya wrote: > Can't you just use > workitem = serializers.PrimaryKeyRelatedField( > queryset=WorkItem.objects.all()) > instead of workitem_id? > No because workitem_id is what is sent in the request. > > On Sat, Dec 16, 2023 at 10:00 AM Larry

Re: Help with DRF error

2023-12-16 Thread Reddy Tintaya
Can't you just use workitem = serializers.PrimaryKeyRelatedField( queryset=WorkItem.objects.all()) instead of workitem_id? On Sat, Dec 16, 2023 at 10:00 AM Larry Martell wrote: > I have a DRF API. It is throwing an error that I have not been able to fix. > > Here is my view and serializer:

Help with DRF error

2023-12-16 Thread Larry Martell
I have a DRF API. It is throwing an error that I have not been able to fix. Here is my view and serializer: class CreateNotations(CreateAPIView): permission_classes = [IsAuthenticated] serializer_class = NotationListSerializer def post(self, request, *args, **kwargs): return

help

2023-12-15 Thread Abdoulaye SENE
hello forks! i need your help. in my codes i see "extend_schema_view" is not defined. so i see that it is not defined but i do not know in which package it is. @extend_schema_view( list=extend_schema( parameters=[ OpenApiParameter( 'ass

HELP needed in a service-worker in a react django project

2023-10-13 Thread Tejas Vaij
Hello there, I am working on a project where I want to post a blob recorded from RecordRTC to my django server from the service worker but I am not able to get whats wrong with it. Can anyone please help me understand what wrong am I going. Here is the link of stackoverflow question of mine

Re: help me

2023-09-25 Thread Migui Galan
you can try exploring vercel. they can host django website. other than that, try pythonanywhere. best site for hosting django On Sun, Sep 24, 2023 at 9:52 AM FIRDOUS BHAT wrote: > https://blog.back4app.com/top-10-heroku-alternatives/ > > > > > On Sun, Sep 24, 2023 at 12:14 AM Akoo Rahimi >

Re: help me

2023-09-23 Thread FIRDOUS BHAT
https://blog.back4app.com/top-10-heroku-alternatives/ On Sun, Sep 24, 2023 at 12:14 AM Akoo Rahimi wrote: > Hello friends > > Can you introduce me some sites similar to Heroku? > > I just started Django and I want to test my projects on the global server. > > -- > You received this message

Re: help me

2023-09-23 Thread ASAMOAH EMMANUEL
Try fly.io On Sat, Sep 23, 2023 at 7:17 PM ALINDA Fortunate wrote: > You can as well try render > > +256774339676 > > "If you want to live a happy life, tie it to a goal, not to people or > things." > > A graduate of Bachelors Degree of Science in Computer Science of Gulu > University. > >

Re: help me

2023-09-23 Thread ALINDA Fortunate
You can as well try render +256774339676 "If you want to live a happy life, tie it to a goal, not to people or things." A graduate of Bachelors Degree of Science in Computer Science of Gulu University. @FortunateAlinda Passionate about Python Development And Computer related Dynamics On Sat,

Re: help me

2023-09-23 Thread Miracle
Kindly use this link https://www.makeuseof.com/heroku-alternatives-free-full-stack-hosting/ On Sat, 23 Sept 2023, 7:44 pm Akoo Rahimi, wrote: > Hello friends > > Can you introduce me some sites similar to Heroku? > > I just started Django and I want to test my projects on the global server. >

help me

2023-09-23 Thread Akoo Rahimi
Hello friends Can you introduce me some sites similar to Heroku? I just started Django and I want to test my projects on the global server. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

django form validation error massage not showing. please help me out

2023-09-15 Thread Mohammad Shahidullah
models.py class Position(models.Model): title = models.CharField(max_length=50) def __str__(self): return self.title class Department(models.Model): title = models.CharField(max_length=50) def __str__(self): return self.title class Employee(models.Model):

Re: ANYONE TO HELP ME ON HOW TO CREATE AN AUTOMATIC NOTIFICATION SYSTEM THAT SENDS A MESSAGE WHENEVER AN OBJECT IS CREATED OR MODIFIED

2023-09-04 Thread Michal Plsek
gt;> >> I have three models below, but l like to create a Notification System to >> send a message to a User whenever ; >> 1. An object is created in all those models >> 2. An object is modified in all those models >> >> And l would like to add trick that it s

Re: ANYONE TO HELP ME ON HOW TO CREATE AN AUTOMATIC NOTIFICATION SYSTEM THAT SENDS A MESSAGE WHENEVER AN OBJECT IS CREATED OR MODIFIED

2023-08-31 Thread Andréas Kühne
ollowing data if available in the object ; > 1. the Name of the Object, > 2. the Image of the Object, and > 3. the type of the Object. > > Lastly I would like to add a : > 1. Notification DELETE function, that gives User a way to delete that > Message , not to appear in his or no

errors am getting during running my project any help

2023-08-25 Thread Steven maithya
(en) PS C:\Users\steve.musyoka\Desktop\CRM-master> python manage.py runserver C:\Python311\python.exe: can't open file 'C:\\Users\\steve.musyoka\\Desktop\\CRM-master\\manage.py': [Errno 2] No such file or directory (en) PS C:\Users\steve.musyoka\Desktop\CRM-master> cd (en) PS

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread Peter Benjamin Ani
Where are you hosting? On Thu, 24 Aug 2023 at 22:37, ALINDA Fortunate wrote: > Hello family some help i have this error > > Aug 25 12:28:30 AM ImportError: Couldn't import Django. Are you sure it's > installed and available on your PYTHONPATH environment variable? Did you > for

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread ivan harold
Try following these https://www.freecodecamp.org/news/deploying-a-django-app-to-render/ On Friday, August 25, 2023 at 9:00:08 PM UTC+8 Abdulrahman Abbas wrote: > Are you using virtual environment? > > On Thu, Aug 24, 2023, 22:37 ALINDA Fortunate > wrote: > >> Hello fa

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread ivan harold
https://www.freecodecamp.org/news/deploying-a-django-app-to-render/ On Friday, August 25, 2023 at 9:00:08 PM UTC+8 Abdulrahman Abbas wrote: > Are you using virtual environment? > > On Thu, Aug 24, 2023, 22:37 ALINDA Fortunate > wrote: > >> Hello family some help i have th

Re: Help on Error while deploying a django app on render.

2023-08-25 Thread Abdulrahman Abbas
Are you using virtual environment? On Thu, Aug 24, 2023, 22:37 ALINDA Fortunate wrote: > Hello family some help i have this error > > Aug 25 12:28:30 AM ImportError: Couldn't import Django. Are you sure it's > installed and available on your PYTHONPATH environment variable? Did

Help on Error while deploying a django app on render.

2023-08-24 Thread ALINDA Fortunate
Hello family some help i have this error Aug 25 12:28:30 AM ImportError: Couldn't import Django. Are you sure it's installed and available on your PYTHONPATH environment variable? Did you forget to activate a virtual environment? Aug 25 12:28:30 AM ==> Build failed  Yet this is

Re: ANYONE TO HELP ME ON HOW TO CREATE AN AUTOMATIC NOTIFICATION SYSTEM THAT SENDS A MESSAGE WHENEVER AN OBJECT IS CREATED OR MODIFIED

2023-08-23 Thread ivan harold
of publiction or creation. > > And I would like to pass the following data if available in the object ; > 1. the Name of the Object, > 2. the Image of the Object, and > 3. the type of the Object. > > Lastly I would like to add a : > 1. Notification DELETE function, that g

ANYONE TO HELP ME ON HOW TO CREATE AN AUTOMATIC NOTIFICATION SYSTEM THAT SENDS A MESSAGE WHENEVER AN OBJECT IS CREATED OR MODIFIED

2023-08-22 Thread Byansi Samuel
ly I would like to add a : 1. Notification DELETE function, that gives User a way to delete that Message , not to appear in his or notification section again. 2. Mark as Read function, that changes the Massage Div Color 3. A notification Barge that displays the UNREAD Messages. Am requesting

Re: hello forks, i need help

2023-08-17 Thread ivan harold
https://www.w3schools.com/django/django_admin_include_members.php explore the site maybe what you are ooking for is in there check this one. On Thursday, August 17, 2023 at 11:53:00 AM UTC-5 Abdoulaye SENE wrote: > the problem is i don't see users in admin.i only see groups. do not know >

Re: hello forks, i need help

2023-08-17 Thread Abdoulaye SENE
the problem is i don't see users in admin.i only see groups. do not know why. Le jeu. 17 août 2023 à 16:48, Abdoulaye SENE a écrit : > thanks a lot > > > Le jeu. 17 août 2023 à 16:38, ivan harold a > écrit : > >> https://www.w3schools.com/django/django_admin_create_user.php >> check this one

Re: hello forks, i need help

2023-08-17 Thread Abdoulaye SENE
thanks a lot Le jeu. 17 août 2023 à 16:38, ivan harold a écrit : > https://www.w3schools.com/django/django_admin_create_user.php > check this one out. > > On Thursday, August 17, 2023 at 8:26:29 AM UTC-5 Abdoulaye SENE wrote: > >> i have created a group named adminis. how to create users in

Re: hello forks, i need help

2023-08-17 Thread ivan harold
https://www.w3schools.com/django/django_admin_create_user.php check this one out. On Thursday, August 17, 2023 at 8:26:29 AM UTC-5 Abdoulaye SENE wrote: > i have created a group named adminis. how to create users in the group > using django admin > > -- You received this message because you

hello forks, i need help

2023-08-17 Thread Abdoulaye SENE
i have created a group named adminis. how to create users in the group using django admin -- 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: final project in django - help

2023-08-16 Thread Migui Galan
im glad to help, whats the issue you are facing? you can send me a gmeet link for the meeting On Wed, Aug 16, 2023 at 11:31 PM kipkoech chesir wrote: > yes, we can, just clarify issues and problems. > > > On Wednesday, August 9, 2023 at 7:23:27 PM UTC+3 ivan harold wrote: > >

Re: final project in django - help

2023-08-16 Thread kipkoech chesir
yes, we can, just clarify issues and problems. On Wednesday, August 9, 2023 at 7:23:27 PM UTC+3 ivan harold wrote: > what help do you need? > Can you give any specifics so we can understand? > > On Sunday, July 16, 2023 at 10:40:09 PM UTC+8 Jun Say wrote: > >> >> >

Re: how to solve please help me

2023-08-10 Thread Kani Sbt
i solved that , i deleted all the databases and makemigrations and migrate and all was done good On Thu, 10 Aug 2023 at 18:12, Mz Gz wrote: > Maybe you referenced another model in your model and the referenced model > is no more there or its name changed > > On Thu, 10 Aug 2023, 2:10 pm Kani

Re: how to solve please help me

2023-08-10 Thread Mz Gz
Maybe you referenced another model in your model and the referenced model is no more there or its name changed On Thu, 10 Aug 2023, 2:10 pm Kani Sbt, wrote: > django.db.migrations.exceptions.InconsistentMigrationHistory: Migration > admin.0001_initial is applied before its dependency

how to solve please help me

2023-08-10 Thread Kani Sbt
django.db.migrations.exceptions.InconsistentMigrationHistory: Migration admin.0001_initial is applied before its dependency lottyapp.0001_initial on database 'default'. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Re: any any help me to solve below error in my django project

2023-08-07 Thread Brian Gitau
change the naming of the urls like for the login from "login" to something like "login_page" because you are causing a clash in the views.py code since you are importing login and your url name is the same rename the logout too hope that helps On Mon, Aug 7, 2023 at 2:40 PM AKHIL KORE

any any help me to solve below error in my django project

2023-08-07 Thread AKHIL KORE
I got the error in my below existings django files. Please solve this error and check all below files code. File "C:\django2pm\myvenv\lib\site-packages\django\urls\resolvers.py", line 725, in url_patterns raise ImproperlyConfigured(msg.format(name=self.urlconf_name)) from e

When i Host i ger=t this error ,i couldn't solve it help me please

2023-08-01 Thread Kani Sbt
File "/home/sbthrmodule/public_html/venv/lib/python3.11/site-packages/MySQLdb/__init__.py", line 121, in Connect return Connection(*args, **kwargs) ^^^ File "/home/sbthrmodule/public_html/venv/lib/python3.11/site-packages/MySQLdb/connections.py",

Re: Looking to help recruiters and job candidates

2023-07-22 Thread utibe solomon
Although Im still in school but I'm ready to work On Sat, Jul 22, 2023, 2:43 PM Dennis Kinanga wrote: > Go on > > On Sat, Jul 22, 2023, 13:12 marvelous wrote: > >> Hello sir I have some sufficient knowledge of back end and im available >> to help you for any price >

Re: Looking to help recruiters and job candidates

2023-07-22 Thread utibe solomon
;> Hello sir I have some sufficient knowledge of back end and im available >> to help you for any price >> >> >> >> >> >> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for >> Windows >> >> >> >> *Fr

Re: Looking to help recruiters and job candidates

2023-07-22 Thread Dennis Kinanga
Go on On Sat, Jul 22, 2023, 13:12 marvelous wrote: > Hello sir I have some sufficient knowledge of back end and im available > to help you for any price > > > > > > Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for > Windows > > >

RE: Looking to help recruiters and job candidates

2023-07-22 Thread marvelous
 Hello sir I have some sufficient knowledge of back end and im available to help you for any price  Sent from Mail for Windows From: Saurav SharmaSent: Tuesday, June 27, 2023 8:35 PMTo: Django usersSubject: Re: Looking to help recruiters and job candidates So what you plan for this platform

Re: final project in django - help

2023-07-16 Thread Jun Say
uemail.me> >> On Jul 16, 2023, at 03:47, Alexandru - Gabriel Ionicescu < >> ionicescu.alexandrugabr...@gmail.com> wrote: >>> >>> Hello, >>> >>> who can help me with the final project in django? in a week I have to >>> hand it over and I got

Re: final project in django - help

2023-07-16 Thread Jun Say
gt; ionicescu.alexandrugabr...@gmail.com> wrote: >> >> Hello, >> >> who can help me with the final project in django? in a week I have to >> hand it over and I got into trouble with it. I can't access github. >> Please help me. >> >> Tnx, >> Alex

Re: final project in django - help

2023-07-16 Thread Brian Carey
A little more information please. What can't you do and what errors do you get? ⁣Get BlueMail for Android ​ On Jul 16, 2023, 03:47, at 03:47, Alexandru - Gabriel Ionicescu wrote: >Hello, > >who can help me with the final project in django? in a week I have to >hand >it

final project in django - help

2023-07-16 Thread Alexandru - Gabriel Ionicescu
Hello, who can help me with the final project in django? in a week I have to hand it over and I got into trouble with it. I can't access github. Please help me. Tnx, Alex -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubs

Re: need help

2023-07-05 Thread DieHardMan 300
>> On Tue, 4 Jul 2023 at 16:21, Abdoulaye SENE >> wrote: >> >>> thanks for the help. but after writing ["*"] i see Server Error (500) >>> >>> Le mardi 4 juillet 2023 à 14:46:01 UTC, ALBERT ASHABA AHEEBWA a écrit : >>> >>>> S

Re: need help

2023-07-05 Thread Bouka Largent
. > > On Tue, 4 Jul 2023 at 16:21, Abdoulaye SENE > wrote: > >> thanks for the help. but after writing ["*"] i see Server Error (500) >> >> Le mardi 4 juillet 2023 à 14:46:01 UTC, ALBERT ASHABA AHEEBWA a écrit : >> >>> Sorry I meant turn &g

Re: need help

2023-07-04 Thread Theresa Taye
Hello, You see a Server error because Debug is set to False. To know what the actual error is, turn it back to True. Then when you are done debugging you can change that especially if you are pushing to production. On Tue, 4 Jul 2023 at 16:21, Abdoulaye SENE wrote: > thanks for the h

Re: need help

2023-07-04 Thread ALBERT ASHABA AHEEBWA
nks for the help. but after writing ["*"] i see Server Error (500) > > Le mardi 4 juillet 2023 à 14:46:01 UTC, ALBERT ASHABA AHEEBWA a écrit : > >> Sorry I meant turn >> DEBUG = True >> >> >> >> >> Best Regards, >> >> Albert

Re: need help

2023-07-04 Thread Abdoulaye SENE
thanks for the help. but after writing ["*"] i see Server Error (500) Le mardi 4 juillet 2023 à 14:46:01 UTC, ALBERT ASHABA AHEEBWA a écrit : > Sorry I meant turn > DEBUG = True > > > > > Best Regards, > > Albert Ashaba Aheebwa > +256 781 435857 <

Re: need help

2023-07-04 Thread ALBERT ASHABA AHEEBWA
mandError: You must set >> settings.ALLOWED_HOSTS if DEBUG is False." >> i wonder if someone can help me to fix it. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> T

Re: need help

2023-07-04 Thread ALBERT ASHABA AHEEBWA
ogramming, i see this problem : " CommandError: You must set > settings.ALLOWED_HOSTS if DEBUG is False." > i wonder if someone can help me to fix it. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To u

need help

2023-07-04 Thread Abdoulaye SENE
hello, while programming, i see this problem : " CommandError: You must set settings.ALLOWED_HOSTS if DEBUG is False." i wonder if someone can help me to fix it. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubsc

Re: Looking to help recruiters and job candidates

2023-06-27 Thread Saurav Sharma
So what you plan for this platform..? On Tuesday, June 27, 2023 at 12:18:46 AM UTC+5:30 Andrew Wang wrote: > Hey Djangonaughts! I'm looking to build a tool for recruiters to get > candidates interviews faster by streamlining recruiters' processes. Would > greatly appreciate any connects. Also,

Re: Looking to help recruiters and job candidates

2023-06-26 Thread Raphael Polanco
Hello, Django-Users. Just a reminder that disclosing personal information can expose you to real-world risks. Divulging even small amounts of personal information in an unsecured forum may render you vulnerable to identity theft, financial attacks, and even online grooming if you share it with

Looking to help recruiters and job candidates

2023-06-26 Thread Andrew Wang
Hey Djangonaughts! I'm looking to build a tool for recruiters to get candidates interviews faster by streamlining recruiters' processes. Would greatly appreciate any connects. Also, if you're looking for a software engineering role (with at least 1 prior company experience for validation),

Re: Can any one help me with this question

2023-06-22 Thread Annadatha Rao
Hi, Can you please recommend any ui components to use with django, like graphs, datagrid etc. With regards, Annadatha. On Sun, Jun 18, 2023, 8:59 PM Annadatha Rao wrote: > Dear All, > > Do DJANGO migrations work with Oracle 11.2 with python-oracle db driver, > please show me an example if

Re: Can any one help me with this question

2023-06-22 Thread Annadatha Rao
it's important to understand the implication and trade-offs. > > Django migrations provide a way to manage and apply changes to your > database schema over time, allowing for version control and easy deployment > of database changes. They help maintain data integrity and make it easier

Re: Can any one help me with this question

2023-06-22 Thread Praveen Chaudhary
to your database schema over time, allowing for version control and easy deployment of database changes. They help maintain data integrity and make it easier to collaborate with other developers. However, if you prefer not to use migrations, you can disable them in django by setting

Re: Can any one help me with this question

2023-06-22 Thread Annadatha Rao
Hi Prabin, Thank you, it worked when I upgraded db to 21c (oracle), thank you for your help. Small question, can I work without migrations, some have I hate migrations being a legacy programmer from (Cobol days). I value your opinion. Thank you, ANNADATHA. On Sun, Jun 18, 2023 at 9:19 PM

Re: Can any one help me with this question

2023-06-18 Thread Annadatha Rao
Thank you very much praveen, I will try and let you know. Annadatja On Sun, Jun 18, 2023, 9:19 PM Praveen Chaudhary wrote: > Yes, Django migrations can work with Oracle 11.2 using the python-oracle > database driver. However, it's important to note that the python-oracle > package is not an

Re: Can any one help me with this question

2023-06-18 Thread Praveen Chaudhary
Yes, Django migrations can work with Oracle 11.2 using the python-oracle database driver. However, it's important to note that the python-oracle package is not an official Oracle-provided driver. The official driver is called cx_Oracle, which is widely used for connecting Django to Oracle

Can any one help me with this question

2023-06-18 Thread Annadatha Rao
Dear All, Do DJANGO migrations work with Oracle 11.2 with python-oracle db driver, please show me an example if works. Thank you for your support, Annadatha. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

Re: can someone help me why my static files is not being rendered?

2023-06-17 Thread Mohammad Sadegh
> Yes send message to my account -- 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 the web

Re: can someone help me why my static files is not being rendered?

2023-06-16 Thread Aspersh Upadhyay
Thanks a lot to Makan Dianka and everyone who replied to my question. Your help was greatly appreciated. I was able to solve the problem using Makan Dianka's solution. On Friday, June 16, 2023 at 9:00:20 AM UTC+5:30 Makan Dianka wrote: > It is : > > STATICF

Re: can someone help me why my static files is not being rendered?

2023-06-15 Thread Makan Dianka
It is : STATICFILES_DIRS=[ . ] Not : STATICFILES_DIR=[ . ] Just add S in the end of DIR like DIRS and make sur u create static folder in your project root. Le jeu. 15 juin 2023 à 16:52, Ngaga Dancan a écrit : > Use load static first before you use extends > > > On Thu,

Re: can someone help me why my static files is not being rendered?

2023-06-15 Thread Ngaga Dancan
Use load static first before you use extends On Thu, Jun 15, 2023, 16:52 Prosper Lekia wrote: > Where is the Python.png located? > > From your code, it should be directly in your static folder not a > subfolder. So verify your file structure first. If every is in order, > confirm if whitenoise

Re: can someone help me why my static files is not being rendered?

2023-06-15 Thread ALBERT ASHABA AHEEBWA
According to your settings, the `Python.png` file should be inside `static` on the same level as `manage.py`. |---static / |-- Python.png |--manage.py |-- The file structure of almost that kind. If you're in development and this is a practice thing, you don't need `whitenoise` just yet.

Re: can someone help me why my static files is not being rendered?

2023-06-15 Thread Prosper Lekia
Where is the Python.png located? >From your code, it should be directly in your static folder not a subfolder. So verify your file structure first. If every is in order, confirm if whitenoise is installed, and been added to your MiddleWare. On Thu, Jun 15, 2023, 14:33 Aspersh Upadhyay <

can someone help me why my static files is not being rendered?

2023-06-15 Thread Aspersh Upadhyay
my settings.py STATIC_URL = 'static/' STATICFILES_DIR = [ BASE_DIR / "static" ] Template where I am trying to load static files {% extends 'base.html' %} {% load static %} {% block title %} Issue With Django static files {%endblock title %} {% block body %}

Re: I want help from senior python/django developer to create one django assignment project.

2023-06-05 Thread AKHIL KORE
>> >>>> On Mon, 5 Jun, 2023, 22:35 AKHIL KORE, wrote: >>>> >>>>> Hi django developer group. >>>>> >>>>> I'm from india. I got one django assignment from xyz comapny. But i >>>>> can't how to create that log

Re: I want help from senior python/django developer to create one django assignment project.

2023-06-05 Thread Chetan Ganji
It looks like a test for getting hired in a company. You should try to solve this yourself before asking for help. Regards, Chetan Ganji +91-900-483-4183 ganji.che...@gmail.com http://ryucoder.in On Tue, Jun 6, 2023 at 1:40 AM André Hangalo wrote: > Convert this doc in pdf > > On

Re: I want help from senior python/django developer to create one django assignment project.

2023-06-05 Thread André Hangalo
e: >> >>> Bro please send in pdf format so that it will be possible to open in >>> mobile >>> >>> On Mon, 5 Jun, 2023, 22:35 AKHIL KORE, wrote: >>> >>>> Hi django developer group. >>>> >>>> I'm from ind

Re: keeps redirecting to non-existent url, please help

2023-06-05 Thread FLAVIEN HERI
You have verify of the route of your home page is correctly link to your views Flavien Whatsapp+243899429099 On 6/5/23, ALBERT ASHABA AHEEBWA wrote: > You need to us the some code (Installed apps, views.py as well as urls.py ) > for us to help. They're all connected. > > >

Re: I want help from senior python/django developer to create one django assignment project.

2023-06-05 Thread AKHIL KORE
>> wrote: >> >>> Bro please send in pdf format so that it will be possible to open in >>> mobile >>> >>> On Mon, 5 Jun, 2023, 22:35 AKHIL KORE, wrote: >>> >>>> Hi django developer group. >>>> >>>> I'm fro

Re: I want help from senior python/django developer to create one django assignment project.

2023-06-05 Thread Lakshyaraj Dash
On Mon, 5 Jun, 2023, 22:35 AKHIL KORE, wrote: >>> >>>> Hi django developer group. >>>> >>>> I'm from india. I got one django assignment from xyz comapny. But i >>>> can't how to create that logical way. Please help me. Below file is that

Re: I want help from senior python/django developer to create one django assignment project.

2023-06-05 Thread AKHIL KORE
gt; >> On Mon, 5 Jun, 2023, 22:35 AKHIL KORE, wrote: >> >>> Hi django developer group. >>> >>> I'm from india. I got one django assignment from xyz comapny. But i >>> can't how to create that logical way. Please help me. Below file is that >>&

Re: I want help from senior python/django developer to create one django assignment project.

2023-06-05 Thread Sebastian Jung
india. I got one django assignment from xyz comapny. But i can't > how to create that logical way. Please help me. Below file is that > assignment. Please open and see it. > can any one send that type of related previous projects code. > > -- > You received this message

Re: I want help from senior python/django developer to create one django assignment project.

2023-06-05 Thread Vishesh Mangla
m from india. I got one django assignment from xyz comapny. But i >> can't how to create that logical way. Please help me. Below file is that >> assignment. Please open and see it. >> can any one send that type of related previous projects code. >> >> -- >> You rec

Re: I want help from senior python/django developer to create one django assignment project.

2023-06-05 Thread Lakshyaraj Dash
Bro please send in pdf format so that it will be possible to open in mobile On Mon, 5 Jun, 2023, 22:35 AKHIL KORE, wrote: > Hi django developer group. > > I'm from india. I got one django assignment from xyz comapny. But i can't > how to create that logical way. Please help me

I want help from senior python/django developer to create one django assignment project.

2023-06-05 Thread AKHIL KORE
Hi django developer group. I'm from india. I got one django assignment from xyz comapny. But i can't how to create that logical way. Please help me. Below file is that assignment. Please open and see it. can any one send that type of related previous projects code. -- You received

Re: keeps redirecting to non-existent url, please help

2023-06-05 Thread ALBERT ASHABA AHEEBWA
You need to us the some code (Installed apps, views.py as well as urls.py ) for us to help. They're all connected. Best Regards, Albert Ashaba Aheebwa +256 781 435857 On Mon, 5 Jun 2023, 16:24 Kit Jenkins, wrote: > Hello everyone, I just finished my first tutorial django project, but

Re: Django aws deployment doesn't work, please help

2023-06-05 Thread Jishnu Ramachandran
This tutorial will help you to achieve what you are trying. On Mon, Jun 5, 2023 at 2:32 PM Jishnu Ramachandran < jishnuchandrala...@gmail.com> wrote: > https://www.youtube.com/watch?v=Xlp9G137-MI > > On Mon, Jun 5, 2023 at 5:51 AM Makan Dianka > wrote: > >> Do you

  1   2   3   4   5   6   7   8   9   10   >