Re: Displaying contrast of a queryset

2024-05-01 Thread Kelvin Macharia
Actually: Query for tasks without relations to Product tasks = Task.objects.filter(product__isnull=True) after setting product field optional in as follows: product = models.ForeignKey(Product, on_delete=models.CASCADE, null=True, blank=True) On Wednesday, May 1, 2024 at 4:59:46 PM UTC+3 Ryan

Re: Displaying contrast of a queryset

2024-05-01 Thread Kelvin Macharia
Hi Abdou KARAMBIZI, Have you tried to make the product field in the Task model optional? Like: product = models.ForeignKey(Product, on_delete=models.CASCADE, null=True, blank=True) On Saturday, April 27, 2024 at 9:55:56 PM UTC+3 Abdou KARAMBIZI wrote: > Hello friends, > > products =

Lookin for Internship opportunity (Django, React)

2024-04-30 Thread Ricky Kristian
Hi, I'm looking for internship as a full stack engineer. My tech stack is, Django Rest Framework, React.Js, SQL, MySQL, Tailwind CSS, CSS, HTML You may check my current live project: https://workmatch.rickykristianbutarbutar.com github: Your Repositories (github.com)

Re: E-comm live project

2024-04-30 Thread Kintu Peter
Watsap +256789746493 On Monday, March 18, 2024 at 8:26:50 PM UTC+3 1001_prabhjot Singh wrote: > so i am working on a full stack e-comm website and this project is really > very big for me because it's a live project am using django for backend > interested one's can send there number for

Re: E-comm live project

2024-04-30 Thread FIRDOUS BHAT
HI there, I've worked on multi-vendor E-Commerce apps, EdTech apps and on Real Estate apps. You can consider me. My WhatsApp no. : +918553332955 On Tue, Apr 30, 2024 at 4:03 PM shubham joshi wrote: > Hello @prabhjotbal...@gmail.com and team, > > Please consider me for e-comm project > +91

Re: E-comm live project

2024-04-30 Thread shubham joshi
Hello @prabhjotbal...@gmail.com and team, Please consider me for e-comm project +91 8390246938 is my whpp number Thanks, shubham From: django-users@googlegroups.com on behalf of 1001_prabhjot Singh Sent: Monday, March 18,

Re: E-comm live project

2024-04-30 Thread shubham joshi
+91 8390246938 From: django-users@googlegroups.com on behalf of 1001_prabhjot Singh Sent: Monday, March 18, 2024 10:45 PM To: Django users Subject: E-comm live project so i am working on a full stack e-comm website and this project is really very big for me

Re: E-comm live project

2024-04-29 Thread kumbhaj shukla
Looking for remote opportunities, anyone is there who have link or looking for a co founder>. Mail are always open just write your proposal , and let's build something and make some impact with similar thought.kumbha...@gmail.com *Best regards,* *Kumbhaj shukla*

Re: E-comm live project

2024-04-29 Thread rahul sharma
7899403562 On Mon, Apr 29, 2024, 19:45 Pankaj Saini wrote: > Please share WhatsApp Group Link. > > On Mon, Mar 18, 2024, 10:56 PM 1001_prabhjot Singh < > prabhjotbal...@gmail.com> wrote: > >> so i am working on a full stack e-comm website and this project is really >> very big for me because

Re: Freelance Opportunity : Django Developer for building A Dialer

2024-04-29 Thread Pankaj Saini
I am interested in this position. I have an experience in Django Development with strong Python. On Tue, Apr 2, 2024, 10:49 PM Abhishek J wrote: > Dear Developers, > > I need to build an android and IOS phone dialer similar to Truecaller. > > We are seeking experienced and dedicated candidates

Re: E-comm live project

2024-04-29 Thread Pankaj Saini
Please share WhatsApp Group Link. On Mon, Mar 18, 2024, 10:56 PM 1001_prabhjot Singh wrote: > so i am working on a full stack e-comm website and this project is really > very big for me because it's a live project am using django for backend > interested one's can send there number for WhatsApp

Re: Displaying contrast of a queryset

2024-04-28 Thread manohar chundru
print(p) On Sun, Apr 28, 2024 at 12:25 AM Abdou KARAMBIZI wrote: > Hello friends, > > products = Task.objects.select_related().all() > for p in products: > print(p.product.product_name) > > This gives product that has relation in Task model but *I need product > which doesn't have relation in

Re: Displaying contrast of a queryset

2024-04-27 Thread Abdou KARAMBIZI
Hello friends, products = Task.objects.select_related().all() for p in products: print(p.product.product_name) This gives product that has relation in Task model but *I need product which doesn't have relation in Task * *Means we have products have relations in Task model and others with no

Re: Displaying contrast of a queryset

2024-04-27 Thread Kelvin Macharia
Before I share my thoughts here is a question for you. Where do you expect your product to be printed out? Here is what I think you should try out. First, the source code looks correct to me. Your view only get triggered when you access the routes(url) pointing to this view via the browser

Re: Displaying contrast of a queryset

2024-04-26 Thread Muhammad Juwaini Abdul Rahman
You're looking for `product`, but the model that you queried is `Task`. On Fri, 26 Apr 2024 at 17:40, Abdou KARAMBIZI wrote: > Hello, > *I have 2 models :* > > class Product(models.Model): > product_id = models.AutoField(primary_key=True) > product_name =

Displaying contrast of a queryset

2024-04-26 Thread Abdou KARAMBIZI
Hello, *I have 2 models :* class Product(models.Model): product_id = models.AutoField(primary_key=True) product_name = models.CharField(max_length=200) price = models.IntegerField() image = models.ImageField(upload_to='images/products_images/',null=True,blank=True) def

Re: Problem to style form fields with error

2024-04-25 Thread Guido Luis Dalla Vecchia
Here I attach the relevant parts of the files "views.py", "index.html" and "forms.py" so you can check them out. Thanks! El jueves, 25 de abril de 2024 a las 11:36:03 UTC-3, Ryan Nowakowski escribió: > Can you share some code snippets? > > > On April 24, 2024 6:28:18 PM CDT, Guido Luis Dalla

Problem to style form fields with error

2024-04-24 Thread Guido Luis Dalla Vecchia
Hello! I'm building my first website with Django and I've been stuck for the past two months with a problem I can't figure out. My website has a form with three fields that allow the user to input his first name, last name and email. In my "forms.py" file, I've declared "clean" methods for each

Problem when styling form fields with errors

2024-04-24 Thread Guido Luis Dalla Vecchia
Hello! I'm building my first website with Django and for the last 2 months have been stuck with a problem with my form. My webpage has a form with 3 fields that allow the user to input his first name, last name and email. I've defined "clean" methods for all three fields in "forms.py", in which

Re: Agricultural and livestock marketplace plus social network as a whole

2024-04-24 Thread villeantropist
I am in sir +2348158951292 On Friday, March 15, 2024 at 8:49:19 PM UTC+1 Jorge Bueno wrote: > Good evening everyone, I need help in my personal project to create an > agricultural and livestock marketplace and an agricultural and livestock > social network as a whole.Longer explanation:Farmers

Re: Agricultural and livestock marketplace plus social network as a whole

2024-04-23 Thread 1001_prabhjot Singh
Intrested 9877199920 On Sat, Mar 16, 2024, 1:19 AM Jorge Bueno wrote: > Good evening everyone, I need help in my personal project to create an > agricultural and livestock marketplace and an agricultural and livestock > social network as a whole.Longer explanation:Farmers and ranchers leave >

Re: Agricultural and livestock marketplace plus social network as a whole

2024-04-23 Thread Sujata Aghor
BTW your github pages are not accessible (giving #404 error) - Both links frontend and backend. On Tue, Apr 23, 2024 at 3:24 PM Sujata Aghor wrote: > Hello > I am interested in Python Django work. > Whatsapp : 9881301878 > > >> On Saturday, March 16, 2024 at 1:19:19 AM UTC+5:30 Jorge Bueno

Re: Agricultural and livestock marketplace plus social network as a whole

2024-04-23 Thread Sujata Aghor
Hello I am interested in Python Django work. Whatsapp : 9881301878 > On Saturday, March 16, 2024 at 1:19:19 AM UTC+5:30 Jorge Bueno wrote: > >> Good evening everyone, I need help in my personal project to create an >> agricultural and livestock marketplace and an agricultural and livestock >>

Re: Agricultural and livestock marketplace plus social network as a whole

2024-04-21 Thread Ankit Patne
I can work with Python and Django part. Whatsapp : +91 9373579749 On Saturday, March 16, 2024 at 1:19:19 AM UTC+5:30 Jorge Bueno wrote: > Good evening everyone, I need help in my personal project to create an > agricultural and livestock marketplace and an agricultural and livestock > social

Re: Agricultural and livestock marketplace plus social network as a whole

2024-04-21 Thread Collins Emmanuel
Count me in  +254714411940 On Sun 21. Apr 2024 at 19:13, Michael Onuekwusi wrote: > Interested please, 8072094026 whatsapp > > On Fri, Mar 15, 2024, 8:49 PM Jorge Bueno > wrote: > >> Good evening everyone, I need help in my personal project to create an >> agricultural and livestock

How to solve Access to fetch at 'https://api.amadeus.com/v1/flight-offers' from origin 'http://127.0.0.1:8000' has been blocked by CORS policy: Response to preflight request doesn't pass access contro

2024-04-21 Thread Эля Min
I have this one:from django.middleware.common import MiddlewareMixin from django.http import JsonResponse class CorsMiddleware(MiddlewareMixin): def process_request(self, request): if request.method == "OPTIONS" and "HTTP_ACCESS_CONTROL_REQUEST_METHOD" in request.META:

Re: Agricultural and livestock marketplace plus social network as a whole

2024-04-21 Thread Michael Onuekwusi
Interested please, 8072094026 whatsapp On Fri, Mar 15, 2024, 8:49 PM Jorge Bueno wrote: > Good evening everyone, I need help in my personal project to create an > agricultural and livestock marketplace and an agricultural and livestock > social network as a whole.Longer explanation:Farmers and

Re: problem when i perform " python3 manage.py makemigrations"

2024-04-17 Thread ASAMOAH EMMANUEL
from django.urls import path from . import views urlpatterns = [ path('login/', views.login_user, name='login'), path('logout/', views.logout_request, name='logout'), path('register/', views.registration, name='registration'), ] On Wed, Apr 17, 2024 at 5:16 PM Ana Jiménez wrote: >

Re: problem when i perform " python3 manage.py makemigrations"

2024-04-17 Thread Ana Jiménez
the file that says i have wrong is this one: djangoapp/urls.py # Uncomment the required imports before adding the code from django.shortcuts import render from django.http import HttpResponseRedirect, HttpResponse from django.contrib.auth.models import User from django.shortcuts import

Re: problem when i perform " python3 manage.py makemigrations"

2024-04-17 Thread ASAMOAH EMMANUEL
check your urls.py file to make sure you haven't imported circularly. or better still, paste your urls.py here On Wed, Apr 17, 2024 at 4:47 PM Ana Jiménez wrote: > hi guys, so i'm doing a project and there's a part that says i need to do > the migrations but when i do that i get this error >

problem when i perform " python3 manage.py makemigrations"

2024-04-17 Thread Ana Jiménez
hi guys, so i'm doing a project and there's a part that says i need to do the migrations but when i do that i get this error "Traceback (most recent call last): File "/home/project/xrwvm-fullstack_developer_capstone/server/djangoenv/lib/python3.8/site-packages/django/urls/resolvers.py", line

Re: ModuleNotFoundError: No module named 'mysite'

2024-04-14 Thread Ahmad Irfan
have you checked your virtual env? On Sun, 14 Apr 2024 at 5:38 AM, hikinthru wrote: > I am a new Django user and am setting up my first site on a local MAMP > server. Django is running, but when I run `python manage.py makemigrations` > I get the following error: > >

problem when i create a new django project

2024-04-14 Thread 无名氏
创建 Django 应用程序时出错: Python 端错误。退出代码: 1,错误: Traceback (most recent call last): File "D:\pycharm_stu\pycharm_stu_\plugins\python\helpers\pycharm\_jb_django_project_creator.py", line 12, in management.execute_from_command_line(argv=["django-admin", "startproject", project_name, path]) File

ModuleNotFoundError: No module named 'mysite'

2024-04-13 Thread hikinthru
I am a new Django user and am setting up my first site on a local MAMP server. Django is running, but when I run `python manage.py makemigrations` I get the following error: --- Traceback (most recent call last): File

Login using phone and number

2024-04-13 Thread Yash Trivedi
I need a code for login using phone number and password without using form.py and tell me how can I do quickly -- 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

Re: How to effectively use PUT and DELETE HTTP methods in Django Class-Based Views?

2024-04-12 Thread Luis Zárate
Also a recomendation, see that `dispatch` method call the view as handler(request, *args, **kwargs) So maybe is a good idea do something like: class MyView(view): def put(self, request, *args, **kwargs): ... Regards, El vie, 12 abr 2024 a las 16:13, Luis Zárate () escribió:

Re: How to effectively use PUT and DELETE HTTP methods in Django Class-Based Views?

2024-04-12 Thread Luis Zárate
See https://docs.djangoproject.com/en/5.0/topics/class-based-views/#supporting-other-http-methods Also on view you have a variable called, where you can limit the available methods. http_method_names El vie, 12 abr 2024 a las 7:20, Mamadou Alpha Bah (< mamadoualphabah...@gmail.com>) escribió:

Re: DRF Trailing Slah

2024-04-12 Thread Luis Zárate
Check your URL.py and append the slash, also take a look of https://docs.djangoproject.com/en/5.0/ref/settings/#append-slash El vie, 12 abr 2024 a las 15:40, MISHEL HANNA () escribió: > Hello > i have endpoint when add / to the end of it i can not send request it > return this > Not Found:

DRF Trailing Slah

2024-04-12 Thread MISHEL HANNA
Hello i have endpoint when add / to the end of it i can not send request it return this Not Found: /api/v1/properties/user/ [12/Apr/2024 20:19:03] "GET /api/v1/properties/user/ HTTP/1.1" 404 23 but when remove / from the end of it return success [12/Apr/2024 20:19:09] "GET

How to effectively use PUT and DELETE HTTP methods in Django Class-Based Views?

2024-04-12 Thread Mamadou Alpha Bah
I'm setting up a CRUD system with Django, using Class-Based Views. Currently I'm trying to figure out how to handle HTTP PUT and DELETE requests in my application. Despite searching the Django documentation extensively, I'm having trouble

Is the collect static of ManifestStaticFilesStorage buggy?

2024-04-12 Thread run_the_race
Hi All, When collecting the *wc-take-message.min.js* file, it fails to find the file *x-field.min.css* that is in the correct place. This is my manifest storage that enables hashing JS modules imports: *from django.contrib.staticfiles.storage import ManifestStaticFilesStorage,class

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: Freelance Opportunity : Django Developer for building A Dialer

2024-04-11 Thread Clinton Paul
hello is the position still available? On Tue, Apr 2, 2024 at 8:19 PM Abhishek J wrote: > Dear Developers, > > I need to build an android and IOS phone dialer similar to Truecaller. > > We are seeking experienced and dedicated candidates who are proficient in > Django and possess a keen

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()"

Email verification in Django + Djoser

2024-04-10 Thread Okkert Joubert
I have a register page in my django app and I am using djoser for the end point to create and users etc, when I register with an email ending in .com (e.g. gmail.com) it works but when I enter an email ending with .co.za it does not work -- You received this message because you are subscribed

Re: Challenge hosting a django project on render

2024-04-07 Thread manohar chundru
can On Thu, 4 Apr 2024, 9:12 pm ALINDA Fortunate, wrote: > Hello team I am finding challenges in hosting my project on render it > shows the webservice is live and it brings this error any help > > Error during template rendering > > In template /opt/render/project/src/templates/home.html,

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: Challenge hosting a django project on render

2024-04-05 Thread ALINDA Fortunate
Thanks so much everyone it was rectified indeed the issue was with migrations. On Fri, 5 Apr 2024, 15:58 Franky Bonanno, wrote: > Makemigrations then migrate > > Il ven 5 apr 2024, 10:24 Luciano Martins (luxu) ha > scritto: > >> Did you run the migrations? >> >> Em quinta-feira, 4 de abril de

Re: Challenge hosting a django project on render

2024-04-05 Thread Franky Bonanno
Makemigrations then migrate Il ven 5 apr 2024, 10:24 Luciano Martins (luxu) ha scritto: > Did you run the migrations? > > Em quinta-feira, 4 de abril de 2024 às 12:43:02 UTC-3, ALINDA Fortunate > escreveu: > >> Hello team I am finding challenges in hosting my project on render it >> shows the

Re: Finding a job

2024-04-05 Thread Pearson Tech
I'm sorry to inform you but I'm not recruiting, I don't have open projects and I'm not looking for developers, even so I appreciate it. On Wed, Apr 3, 2024 at 12:38 PM Ganilson Garcia wrote: > Dear recruiters! > > I hope this message finds you well. I am reaching out to express my > interest in

Re: Django Developer with Prior Experience developing a dialer required

2024-04-05 Thread Abdulrahman Abbas
Hi I'm very much interested to contribute to this project below is my CV On Wed, Apr 3, 2024, 14:11 Abhishek J wrote: > Dear Developers, > > I need to build an android and IOS phone dialer similar to Truecaller. > > We are seeking experienced and dedicated candidates who are proficient in >

Re: Challenge hosting a django project on render

2024-04-05 Thread Luciano Martins (luxu)
Did you run the migrations? Em quinta-feira, 4 de abril de 2024 às 12:43:02 UTC-3, ALINDA Fortunate escreveu: > Hello team I am finding challenges in hosting my project on render it > shows the webservice is live and it brings this error any help > > Error during template rendering > > In

Challenge hosting a django project on render

2024-04-04 Thread ALINDA Fortunate
Hello team I am finding challenges in hosting my project on render it shows the webservice is live and it brings this error any help Error during template rendering In template /opt/render/project/src/templates/home.html, error at line *9* relation "pages_landingpage" does not exist LINE 1:

Finding a job

2024-04-03 Thread Ganilson Garcia
Dear recruiters! I hope this message finds you well. I am reaching out to express my interest in job opportunities in the Fullstack development field, particularly those that may align with my experience in Python, ExpressJs, and Django Rest Framework. With over 20 years of age and

Django bugfix release issued: 5.0.4

2024-04-03 Thread Natalia Bidart
Details are available on the Django project weblog: https://www.djangoproject.com/weblog/2024/apr/03/bugfix-release/ -- 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

Re: Freelance Opportunity : Django Developer for building A Dialer

2024-04-03 Thread SAHIL
hi there, i am interested in this position. here is my github link https://github.com/immodded On Tue, 2 Apr 2024, 10:49 pm Abhishek J, wrote: > Dear Developers, > > I need to build an android and IOS phone dialer similar to Truecaller. > > We are seeking experienced and dedicated candidates

Django Developer with Prior Experience developing a dialer required

2024-04-03 Thread Abhishek J
Dear Developers, I need to build an android and IOS phone dialer similar to Truecaller. We are seeking experienced and dedicated candidates who are proficient in Django and possess a keen interest in contributing to this impactful initiative. We look forward to the opportunity to collaborate

Re: Freelance Opportunity : Django Developer for building A Dialer

2024-04-03 Thread Ahmed Shrief
I am interested in this position On Tue, Apr 2, 2024, 7:20 PM Abhishek J wrote: > Dear Developers, > > I need to build an android and IOS phone dialer similar to Truecaller. > > We are seeking experienced and dedicated candidates who are proficient in > Django and possess a keen interest in

Re: ANYONE CAN HELP ME

2024-04-03 Thread Miroslav Milic
Hi, Here is the link to the Django docs where it is explained how to handle multiple file uploads with FileInput. Try to use the example from the docs as a starting point. https://docs.djangoproject.com/en/5.0/topics/http/file-uploads/#uploading-multiple-files Best regards, -- Miroslav Milic

Re: Freelance Opportunity : Django Developer for building A Dialer

2024-04-02 Thread Michael Onuekwusi
I'll be interested..django developer here On Tue, Apr 2, 2024, 6:19 PM Abhishek J wrote: > Dear Developers, > > I need to build an android and IOS phone dialer similar to Truecaller. > > We are seeking experienced and dedicated candidates who are proficient in > Django and possess a keen

Re: Freelance Opportunity : Django Developer for building A Dialer

2024-04-02 Thread OSP PRO
I do build mobile apps with flutter and react native. And for python. I use flask On Tue, Apr 2, 2024, 9:03 PM gethsun misesi wrote: > Hey Abhishek, > > Thank you for reaching out and considering me for this exciting > opportunity to work on the development of an Android and iOS phone dialer >

Re: Freelance Opportunity : Django Developer for building A Dialer

2024-04-02 Thread gethsun misesi
Hey Abhishek, Thank you for reaching out and considering me for this exciting opportunity to work on the development of an Android and iOS phone dialer app similar to Truecaller. I am a dedicated and experienced Django developer with a strong passion for creating innovative solutions,

Freelance Opportunity : Django Developer for building A Dialer

2024-04-02 Thread Abhishek J
Dear Developers, I need to build an android and IOS phone dialer similar to Truecaller. We are seeking experienced and dedicated candidates who are proficient in Django and possess a keen interest in contributing to this impactful initiative. We look forward to the opportunity to collaborate

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: Form data issue

2024-04-02 Thread Agar Joshua
explain this with more context and snippets of code On Mon, Apr 1, 2024 at 4:04 PM Moises Anibal wrote: > I can't for the life of me get my form data to pass from one view to > another. I need help > > -- > You received this message because you are subscribed to the Google Groups > "Django

Re: Freelance Opportunity: Django Developer for School Management System Project

2024-04-02 Thread Bradie Poa
I doubt if this is a scam, I have seen this for almost months now and the owner doesn't text back. So please, be careful, this guy might be just jumping the rope . On Mon, Apr 1, 2024, 16:04 Bethuel Thipe-Moukangwe wrote: > Please receive my qualifications below. > I am fully interested. > > On

Re: Freelance Opportunity: Django Developer for School Management System Project

2024-04-01 Thread yaamoussa-solution
I am interesting Le lun. 1 avr. 2024 à 13:04, Bethuel Thipe-Moukangwe a écrit : > Please receive my qualifications below. > I am fully interested. > > On Mon, Apr 1, 2024 at 7:13 AM Amen Guda wrote: > >> i am working on this kind of project currently let me work with you >> >> On Wed, Mar 27,

Form data issue

2024-04-01 Thread Moises Anibal
I can't for the life of me get my form data to pass from one view to another. I need help -- 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

Any streams of people contributing to Django?

2024-04-01 Thread Bar Akiva
Despite spending plenty of time using tools like Django or Vue to develop apps, I have very little clue on how to develop the tools themselves, despite patiently going through the /contributing docs section. Anyone has a video of them (or other people) developing so I could get some context?

Re: Freelance Opportunity: Django Developer for School Management System Project

2024-03-31 Thread Amen Guda
i am working on this kind of project currently let me work with you On Wed, Mar 27, 2024 at 7:58 PM Ravindra Magar wrote: > Dear Developers, > > I hope this message finds you well. My name is Ravindra, representing > Gosiddhi Infotech. Currently, we have an exciting freelance opportunity >

Re: Freelance Opportunity: Django Developer for School Management System Project

2024-03-30 Thread jMrL
Thank you for considering me for this exciting opportunity! I am thrilled to express my interest in contributing to this impactful initiative. My experience aligns closely with the requirements you mentioned, and I am eager to bring my skills to the table. In addition to my proficiency in

Re: Freelance Opportunity: Django Developer for School Management System Project

2024-03-30 Thread Benjamin Nwoke
I humbly wish to inform you that i am readily available. Thanks for your considerations On Fri, Mar 29, 2024 at 1:55 AM Runkang Chen wrote: > I hope this message finds you well. I came across your "School Management > System Project" with Django and I'm genuinely interested in contributing to

Re: Student Club Management Web App: Seeking Collaboration and Advice from Experts

2024-03-30 Thread jMrL
Add me Please ! +12762290226 On Monday, March 25, 2024 at 9:00:51 AM UTC-4 oduwole samuel wrote: > Add me up please > 07083861162 > > On Fri, Mar 22, 2024, 2:16 PM Ganilson Garcia > wrote: > >> Hello! >> >> I hope this message finds you well. I am reaching out to express my >> interest in

Re: Freelance Opportunity: Django Developer for School Management System Project

2024-03-28 Thread Runkang Chen
I hope this message finds you well. I came across your "School Management System Project" with Django and I'm genuinely interested in contributing to its development. I have a strong passion for this area and believe I can bring valuable skills and insights to your project. I want to emphasize

Re: Creating my first test case, failing.

2024-03-27 Thread Muhammad Juwaini Abdul Rahman
Obviously. You need to know how your routers generate the URL endpoint. After reading DRF, my best guess would be either 'courses-list' or 'course-list'. On Tuesday 26 March 2024 at 19:33:07 UTC+8 Filbert wrote: > *sigh* same error: > django.urls.exceptions.NoReverseMatch: Reverse for*

Freelance Opportunity: Django Developer for School Management System Project

2024-03-27 Thread Ravindra Magar
Dear Developers, I hope this message finds you well. My name is Ravindra, representing Gosiddhi Infotech. Currently, we have an exciting freelance opportunity available for a Django developer to collaborate on a significant project involving the creation of a comprehensive school management

Re: Creating my first test case, failing.

2024-03-26 Thread Bayodele Oguntomiloye
Check your url. This error usually show up when there's no url with the name provided for the reverse function On Tue, Mar 26, 2024, 11:55 AM Filbert wrote: > Consider this what seems to be a simple Django/DRF API which works: > > class CourseViewSet(viewsets.ModelViewSet): > queryset =

Re: E-comm live project

2024-03-26 Thread COMPUTER PROGRAMMING AND DEVELOPMENT
I am interested. Please add me as well to the WhatsApp group - +0201223407877 On Mon, Mar 18, 2024 at 7:26 PM 1001_prabhjot Singh < prabhjotbal...@gmail.com> wrote: > so i am working on a full stack e-comm website and this project is really > very big for me because it's a live project am using

Re: E-comm live project

2024-03-26 Thread Michael Onuekwusi
8072094026 whatsapp On Mon, Mar 18, 2024, 6:26 PM 1001_prabhjot Singh wrote: > so i am working on a full stack e-comm website and this project is really > very big for me because it's a live project am using django for backend > interested one's can send there number for WhatsApp group > > -- >

Re: E-comm live project

2024-03-26 Thread Aalam Kazi
I am interested add me also +91 9160554107 On Tue, Mar 26, 2024, 3:54 PM RANGA BHARATH JINKA wrote: > I am interested. Please add me as well to the whatsapp group > - +919110334114 > > On Tue, Mar 26, 2024 at 3:36 PM Sujata Aghor > wrote: > >> I am interested. >> I have experience in Python

Re: Creating my first test case, failing.

2024-03-26 Thread Gajanan Kathar
Use "basename" parameter while registering router. router.register(r'courses', CourseViewSet, basename="courses") And then reverse using this basename and operation like "courses-list". On Tue, 26 Mar, 2024, 17:03 Filbert, wrote: > *sigh* same error: > django.urls.exceptions.NoReverseMatch:

Re: Creating my first test case, failing.

2024-03-26 Thread Filbert
*sigh* same error: django.urls.exceptions.NoReverseMatch: Reverse for* 'courses-create' *not found. 'courses-create' is not a valid view function or pattern name. On Tuesday, March 26, 2024 at 7:28:45 AM UTC-4 Muhammad Juwaini Abdul Rahman wrote: > It's not reverse('courses') alone. Probably

Re: Creating my first test case, failing.

2024-03-26 Thread Muhammad Juwaini Abdul Rahman
It's not reverse('courses') alone. Probably reverse('courses-create') or something like that. On Tue, 26 Mar 2024 at 18:55, Filbert wrote: > Consider this what seems to be a simple Django/DRF API which works: > > class CourseViewSet(viewsets.ModelViewSet): > queryset = Course.objects.all() >

Creating my first test case, failing.

2024-03-26 Thread Filbert
Consider this what seems to be a simple Django/DRF API which works: class CourseViewSet(viewsets.ModelViewSet): queryset = Course.objects.all() serializer_class = CourseSerializer router = DefaultRouter() router.register(r'courses', CourseViewSet) urlpatterns = [ path('',

Re: E-comm live project

2024-03-26 Thread RANGA BHARATH JINKA
I am interested. Please add me as well to the whatsapp group - +919110334114 On Tue, Mar 26, 2024 at 3:36 PM Sujata Aghor wrote: > I am interested. > I have experience in Python Django for 10+ years > > On Mon, Mar 25, 2024 at 6:30 PM oduwole samuel > wrote: > >> I'm interested 07083861162 >>

Re: E-comm live project

2024-03-26 Thread Sujata Aghor
I am interested. I have experience in Python Django for 10+ years On Mon, Mar 25, 2024 at 6:30 PM oduwole samuel wrote: > I'm interested 07083861162 > > On Fri, Mar 22, 2024, 2:16 PM Md. Amjad Hosen > wrote: > >> Hi, I’m interested. Whatsapp number is +8801751023426 >> >> On Friday, March 22,

Re: E-comm live project

2024-03-25 Thread oduwole samuel
I'm interested 07083861162 On Fri, Mar 22, 2024, 2:16 PM Md. Amjad Hosen wrote: > Hi, I’m interested. Whatsapp number is +8801751023426 > > On Friday, March 22, 2024 at 9:56:22 AM UTC+6 Collins Emmanuel wrote: > >> Hi, I’m interested. Whatsapp number is +254714411940 >> <+254%20714%20411940> >>

Re: Join Africa’s Largest Community of Tech Developers Created By Seelicon Tech Academy

2024-03-25 Thread oduwole samuel
07083861162 On Tue, Mar 12, 2024, 4:27 PM Space1 Technology wrote: > Hello there, > > Am Kaka Olawale, K.O from Nigeria. Being a tech developer for almost a > decade, I saw the huge potentials of talents pen in Africa. And based on my > ever growing capacity to make a change, I decided to

Re: Student Club Management Web App: Seeking Collaboration and Advice from Experts

2024-03-25 Thread oduwole samuel
Add me up please 07083861162 On Fri, Mar 22, 2024, 2:16 PM Ganilson Garcia wrote: > Hello! > > I hope this message finds you well. I am reaching out to express my > interest in contributing to the growth and success of your company as a > Python Django Backend Developer. > > While I understand

Re: Does migrate --fake updates django_migrations?

2024-03-23 Thread Mike Dewhirst
On 23/03/2024 12:39 am, Jean-Baptiste Pressac wrote: Hello, The doc says about migrate --fake: /Marks the migrations up to the target one (following the rules above) as applied, but without actually running the SQL to change your database schema. / But what is the operations behind this

Does migrate --fake updates django_migrations?

2024-03-22 Thread Jean-Baptiste Pressac
Hello, The doc says about migrate --fake: *Marks the migrations up to the target one (following the rules above) as applied, but without actually running the SQL to change your database schema. * But what is the operations behind this "marks"? Modifications to the django_migrations database

Re: Student Club Management Web App: Seeking Collaboration and Advice from Experts

2024-03-22 Thread Ganilson Garcia
Hello! I hope this message finds you well. I am reaching out to express my interest in contributing to the growth and success of your company as a Python Django Backend Developer. While I understand that there is currently no advertised vacancy, I sincerely would like to discuss the possibility

Re: E-comm live project

2024-03-22 Thread Md. Amjad Hosen
Hi, I’m interested. Whatsapp number is +8801751023426 On Friday, March 22, 2024 at 9:56:22 AM UTC+6 Collins Emmanuel wrote: > Hi, I’m interested. Whatsapp number is +254714411940 <+254%20714%20411940> > > On Thu 21. Mar 2024 at 22:48, Emmanuel I. Ike > wrote: > >> +2348139457804

Re: E-comm live project

2024-03-21 Thread Collins Emmanuel
Hi, I’m interested. Whatsapp number is +254714411940 On Thu 21. Mar 2024 at 22:48, Emmanuel I. Ike wrote: > +2348139457804 > > Sent from Yahoo Mail on Android >

Re: Student Club Management Web App: Seeking Collaboration and Advice from Experts

2024-03-21 Thread Zaid Ullah
Interested: +923328516774 (WhatsApp) On Fri, Mar 22, 2024, 12:48 AM Runkang Chen (SySRunkang) < help.informatic...@gmail.com> wrote: > I want to join and help you. > > Discord ID: 1178027602930323539 > > On Saturday, March 2, 2024 at 4:59:13 PM UTC+1 SOLTAN NOURELDIEN wrote: > >> >> Hello, I am

Re: E-comm live project

2024-03-21 Thread Emmanuel I. Ike
+2348139457804 Sent from Yahoo Mail on Android On Tue, 19 Mar 2024 at 16:59, MANAS DEWARI<1mv20cs...@sirmvit.edu> wrote: Whastapp Number 9927882702 On Tue, Mar 19, 2024 at 9:00 PM Chisom Iheanacho wrote: Hi I am very interested and this is my WhatsApp number +2347041155897 On Mon, Mar

Re: Student Club Management Web App: Seeking Collaboration and Advice from Experts

2024-03-21 Thread Runkang Chen (SySRunkang)
I want to join and help you. Discord ID: 1178027602930323539 On Saturday, March 2, 2024 at 4:59:13 PM UTC+1 SOLTAN NOURELDIEN wrote: > > Hello, I am currently working on my Django Project for a specific course > at my university. I have already finished reading "Django for Beginners" by >

Re: How to format datetime stamp in JS like it is doing by the date template tag?

2024-03-21 Thread the.one.abo...@gmail.com
Hello, thanks for your reply! The DATETIME_FORMAT setting of Django uses format strings that are incompatible with JS. E.g the default DATETIME_FORMAT value in Django is 'N j, Y'. You can check the allowed format strings in Django documentation

  1   2   3   4   5   6   7   8   9   10   >