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

2024-03-18 Thread Auwalu Muhammad Izziddin
i'm interested, and i will like to help you with the Frontend part 
(Reactjs) my number +2347043995559

On Saturday 2 March 2024 at 16:59:13 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 
> William S. Vincent. Now, I am eager to start this project, but I am still 
> in the learning and research phase. Therefore, I will provide the 
> requirements for the project and would appreciate feedback or any tips from 
> anyone with experience in such projects.
>
> For example, this will be my first time implementing a multi-user system. 
> After doing extensive research, I learned about Django's model group 
> concept managing this approach. Additionally, I discovered Django Channels 
> and signals, which I have never heard of before. I would appreciate any 
> advice or guidance on how to approach such a project. 
>
> Furthermore, if anyone is interested in joining me on this journey, it 
> would be wonderful. We can learn a lot from this project together. The 
> deadline is less than two months, so please provide your Discord or 
> WhatsApp number, and we can create a group to collaborate on this project.
>
> *The requirements for the project are as follows:*
>
> An app for student clubs:
> *SKS Admin:*
>
>- 
>   - Create Club Page
>   - Delete Club Page
>   - Assign Club Manager
>   - Activity Form (Approve, Reject)
>   - Receive notifications (Whenever a change occurs in the club page) 
>   (Approve Change, Reject Change)
>   - Request for Publishing Activity Post (Approve, Reject)
>   - Search Club Page
>   - Announce All Activities (Will be displayed on the main page)
>
> *Club Manager:*
>
>- 
>   - Fill out the activity form
>   - Request for publishing Activity Post (Sending it to admin, and 
>   after approval, the activity will appear on the club main page)
>   - Receive Notification (The response to the Activity Form & 
>   Activity Post publishing request)
>   - Edit Activity Post (Admin manager will receive a notification)
>
> *Student:*
>
>- 
>   - Display weekly Activity Table
>   - Display Clubs Main Page
>   - Search (by category, by date)
>
> I will only focus on the backend development and integrate it into the 
> template. I have other team members who will provide the Static HTML, CSS & 
> JS files. I will incorporate them into the Django templates and work on 
> making them interactive.
>
> Additionally, if time allows, I can implement additional features such as:
>
>- Manager:
>   - Submit an application to SKS to assign a club
>   - Initiate a chat conversation between the manager and the SKS
>- Student:
>   - Become a member of a club
>   - Follow Clubs
>   - Follow the club pages
>   - Like and comment on a post
>
> If you have any ideas or know of existing projects that could serve as 
> inspiration, please feel free to comment. I would greatly appreciate it. 
>
> Also, if you would like to collaborate with me for learning purposes and 
> to work as a team, please don't hesitate to provide your contact 
> information, and I will reach out to you. Thank you very much.
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/b857feb4-24e0-4939-8e93-6de49b9e3f0bn%40googlegroups.com.


Unable to get a simple two level dependent dropdown working

2024-03-18 Thread 'Animesh Gupta' via Django users
Can someone help me understand what am I doing wrong in this django 
dependent dropdown code? My selection for the first dropdown menu is one of 
("NetEng", "ITDE") and when I select, let's say "NetEng", an ajax call is 
made to the ajax function in the backend views.py code, but a [] response 
is received. Ideally, I am expecting the value associated with "NetEng" or 
"ITDE" to be a response.

My forms.py:

from django import forms
from .models import TeamJira, TypeJira

class DropdownForm(forms.Form):
category = forms.ModelChoiceField(queryset=TeamJira.objects.all())
subcategory = forms.ModelChoiceField(queryset=TypeJira.objects.none())

def __init__(self, *args, **kwargs):
super(DropdownForm, self).__init__(*args, **kwargs)
self.fields['subcategory'].queryset = TypeJira.objects.none()
if 'category' in self.data:
try:
category_id = int(self.data.get('category'))
self.fields['subcategory'].queryset = TypeJira.objects.filter(category_id=
category_id).order_by('name')
except (ValueError, TypeError):
pass
elif self.pk:
self.fields['subcategory'].queryset = self
.instance.category.typejira_set.order_by('name')


*My models.py*

class TeamJira(models.Model):
name = models.CharField(max_length=100)

def __str__(self):
return self.name

class TypeJira(models.Model):
category = models.ForeignKey(TeamJira, on_delete=models.CASCADE)
name = models.CharField(max_length=100)

def __str__(self):
return self.name
TEAM_CHOICE = (
('NetEng', 'NetEng'),
('ITDE', 'ITDE'),
)
class JiraAutomation(models.Model):
name = models.CharField(max_length=255, null=True, blank=True, default=None)
team_type = models.CharField(max_length=100, null=True, blank=True, default=
None, choices=TEAM_CHOICE) # Change to CharField
ticket_type = models.CharField(max_length=255, null=True, blank=True, 
default=None)
url = models.CharField(max_length=255, null=True, blank=True, default=None)
isbn_number = models.CharField(max_length=13)

def __str__(self):
return self.name




My views.py function for the dependent dropdown ajax query:

from .models import TypeJira
from django.http import JsonResponse

def load_subcategories(request):
category_id = request.GET.get('category_id')
subcategories = TypeJira.objects.filter(category_id=category_id).values('id', 
'name')
print("THIS IS SUBCATEG", subcategories)
print(list(subcategories))
return JsonResponse(list(subcategories), safe=False)
# return HttpResponse("hello")

Javascript function for ajax in the template:

{% csrf_token %}
{{ form.as_p }}


$(document).ready(function() {
$('select[name^="form-0-team_type"]').change(function() {
var categoryId = $(this).val();
$.ajax({
url: '/load_subcategories/',
data: {
'category_id': categoryId
},
dataType: 'json',
success: function(data) {
var subcategorySelect = $('select[name^="form-0-ticket_type"]');
subcategorySelect.empty();
$.each(data, function(index, subcategory) {
subcategorySelect.append($('

Re: E-comm live project

2024-03-18 Thread Sang
Looks interesting. I'm on WhatsApp @ 9937826218. Please let's catch up
there.

On Mon, Mar 18, 2024, 22:56 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
>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAMg_NadNmJXqGW3vZ%3D7rGDgViQfygtYQUGuRTGRFYexEHKwn0Q%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread Dilip sapkota
8088870574

On Mon, 18 Mar, 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 it's a live project am using django for backend
> interested one's can send there number for WhatsApp group
>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAOND-uuTXrUEHspffmLGMWSYom5fnfFhQ_5rCOLRvd%3DemtBA%2Bw%40mail.gmail.com.


E-comm live project

2024-03-18 Thread 1001_prabhjot Singh
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  

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com.


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

2024-03-18 Thread 1001_prabhjot Singh
am also interested in this project 9877199920

On Mon, 18 Mar 2024 at 20:33, Auwalu Muhammad Izziddin <
auwaluizziddin2...@gmail.com> wrote:

> i'm interested, and i will like to help you with the Frontend part
> (Reactjs) my number +2347043995559
>
> On Saturday 2 March 2024 at 16:59:13 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
>> William S. Vincent. Now, I am eager to start this project, but I am still
>> in the learning and research phase. Therefore, I will provide the
>> requirements for the project and would appreciate feedback or any tips from
>> anyone with experience in such projects.
>>
>> For example, this will be my first time implementing a multi-user system.
>> After doing extensive research, I learned about Django's model group
>> concept managing this approach. Additionally, I discovered Django Channels
>> and signals, which I have never heard of before. I would appreciate any
>> advice or guidance on how to approach such a project.
>>
>> Furthermore, if anyone is interested in joining me on this journey, it
>> would be wonderful. We can learn a lot from this project together. The
>> deadline is less than two months, so please provide your Discord or
>> WhatsApp number, and we can create a group to collaborate on this project.
>>
>> *The requirements for the project are as follows:*
>>
>> An app for student clubs:
>> *SKS Admin:*
>>
>>-
>>   - Create Club Page
>>   - Delete Club Page
>>   - Assign Club Manager
>>   - Activity Form (Approve, Reject)
>>   - Receive notifications (Whenever a change occurs in the club
>>   page) (Approve Change, Reject Change)
>>   - Request for Publishing Activity Post (Approve, Reject)
>>   - Search Club Page
>>   - Announce All Activities (Will be displayed on the main page)
>>
>> *Club Manager:*
>>
>>-
>>   - Fill out the activity form
>>   - Request for publishing Activity Post (Sending it to admin, and
>>   after approval, the activity will appear on the club main page)
>>   - Receive Notification (The response to the Activity Form &
>>   Activity Post publishing request)
>>   - Edit Activity Post (Admin manager will receive a notification)
>>
>> *Student:*
>>
>>-
>>   - Display weekly Activity Table
>>   - Display Clubs Main Page
>>   - Search (by category, by date)
>>
>> I will only focus on the backend development and integrate it into the
>> template. I have other team members who will provide the Static HTML, CSS &
>> JS files. I will incorporate them into the Django templates and work on
>> making them interactive.
>>
>> Additionally, if time allows, I can implement additional features such as:
>>
>>- Manager:
>>   - Submit an application to SKS to assign a club
>>   - Initiate a chat conversation between the manager and the SKS
>>- Student:
>>   - Become a member of a club
>>   - Follow Clubs
>>   - Follow the club pages
>>   - Like and comment on a post
>>
>> If you have any ideas or know of existing projects that could serve as
>> inspiration, please feel free to comment. I would greatly appreciate it.
>>
>> Also, if you would like to collaborate with me for learning purposes and
>> to work as a team, please don't hesitate to provide your contact
>> information, and I will reach out to you. Thank you very much.
>>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/b857feb4-24e0-4939-8e93-6de49b9e3f0bn%40googlegroups.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAMCYDrjD%2B-VBrzPP-QoHGxOB8D8ROubcEBrBBcDDVan41h8U9A%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread Adikwu Samuel
I am interested
+2348064239965

On Mon, Mar 18, 2024, 6:33 PM Sang  wrote:

> Looks interesting. I'm on WhatsApp @ 9937826218. Please let's catch up
> there.
>
> On Mon, Mar 18, 2024, 22:56 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
>>
>> --
>> 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 visit
>> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
>> 
>> .
>>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/CAMg_NadNmJXqGW3vZ%3D7rGDgViQfygtYQUGuRTGRFYexEHKwn0Q%40mail.gmail.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAAh%2BZpdPaKRmuOj-XT00oN_8Rt%3DcRqaEUdaV3%3DBE5vPo5sqBcQ%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread peteru mimo
I'm interested
+2348035685110

On Mon, Mar 18, 2024, 19:08 Adikwu Samuel  wrote:

> I am interested
> +2348064239965
>
> On Mon, Mar 18, 2024, 6:33 PM Sang  wrote:
>
>> Looks interesting. I'm on WhatsApp @ 9937826218. Please let's catch up
>> there.
>>
>> On Mon, Mar 18, 2024, 22:56 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
>>>
>>> --
>>> 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 visit
>>> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> 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 visit
>> https://groups.google.com/d/msgid/django-users/CAMg_NadNmJXqGW3vZ%3D7rGDgViQfygtYQUGuRTGRFYexEHKwn0Q%40mail.gmail.com
>> 
>> .
>>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/CAAh%2BZpdPaKRmuOj-XT00oN_8Rt%3DcRqaEUdaV3%3DBE5vPo5sqBcQ%40mail.gmail.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAJBAA1%2BwZwgdDPwoWEYahA%3DamN%3Ds0KdBByOj8kT_Gtno92OE9Q%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread Pearson Tech
Whatsapp +55 79 0-0020
Please add me

Em seg., 18 de mar. de 2024 às 10:26, 1001_prabhjot Singh <
prabhjotbal...@gmail.com> escreveu:

> 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
>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CA%2Bpcz3XU30vRC_nzsgWk7s1E_qua19hBgyK0s0R8Ff3AyaUpvg%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread Bethuel Thipe-Moukangwe
Whatsapp 071 415 6665

Please add me

On Monday, March 18, 2024, 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
>
> --
> 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 visit https://groups.google.com/d/
> msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%
> 40googlegroups.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAKPeYLw_5iSsqdHs%3DYbh7gfuR-t%3DZGELsK_vVQcKD1%2BEgPTywQ%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread Andrea Latorre
I'm in 3889249512


Il lun 18 mar 2024, 18:26 1001_prabhjot Singh  ha
scritto:

> 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
>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAMDbGketBuda11w4A_rksSvaPss_RWfG0vZSH82QeD2-B6jh_Q%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread Brian Odhiambo
WhatsApp +254721897768

On Mon, Mar 18, 2024, 20:25 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
>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAPjQKqbjmDUgbQ_wfvgc_9gFcyC8QPxnY1WT9wVRcwVuw3KejA%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread Space1 Technology
You can add me +2347081424159

On Mon, 18 Mar 2024 at 18:26, 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
>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAPSG2ffhXEmzTXYoPnL-Oj0bzX5%3DD5zkUOPaPaVzpY5kw2eViw%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread Andrew Daud Hutahaean
Please add me also, i am interested. my whatsapp: +6282216185302

On Mon, Mar 18, 2024 at 6:34 PM Sang  wrote:

> Looks interesting. I'm on WhatsApp @ 9937826218. Please let's catch up
> there.
>
> On Mon, Mar 18, 2024, 22:56 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
>>
>> --
>> 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 visit
>> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
>> 
>> .
>>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/CAMg_NadNmJXqGW3vZ%3D7rGDgViQfygtYQUGuRTGRFYexEHKwn0Q%40mail.gmail.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAPzY2wmwq3sYV%3D09pfHW9k4%3DzAgra9WBVtSrqM_Ya3wtCo%2BMDA%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread Bradie Poa
Bro, +256779971996 Bradie Poa and so interested in the game, having a lot
of experience in e-commerces

On Mon, Mar 18, 2024, 23:56 Andrew Daud Hutahaean 
wrote:

> Please add me also, i am interested. my whatsapp: +6282216185302
>
> On Mon, Mar 18, 2024 at 6:34 PM Sang  wrote:
>
>> Looks interesting. I'm on WhatsApp @ 9937826218. Please let's catch up
>> there.
>>
>> On Mon, Mar 18, 2024, 22:56 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
>>>
>>> --
>>> 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 visit
>>> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> 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 visit
>> https://groups.google.com/d/msgid/django-users/CAMg_NadNmJXqGW3vZ%3D7rGDgViQfygtYQUGuRTGRFYexEHKwn0Q%40mail.gmail.com
>> 
>> .
>>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/CAPzY2wmwq3sYV%3D09pfHW9k4%3DzAgra9WBVtSrqM_Ya3wtCo%2BMDA%40mail.gmail.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CAJkmis3aOU7x%2BVV%3DvK1%3DwwVfW0P0kALLNWDooPrW_uQ6Q3becg%40mail.gmail.com.


Re: E-comm live project

2024-03-18 Thread Bayodele Oguntomiloye
I'm interested @08064561938

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
>
> --
> 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 visit
> https://groups.google.com/d/msgid/django-users/1101d563-726a-458e-ad9f-4b91bebf3132n%40googlegroups.com
> 
> .
>

-- 
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 visit 
https://groups.google.com/d/msgid/django-users/CACABt6Sj-J51Y7%3DWL2ztdfSt3gMF4uYiLx6y0%3DjuW05Z7FdwTQ%40mail.gmail.com.