-
-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create variousteams dashboard #74
base: main
Are you sure you want to change the base?
Changes from 4 commits
d29cf5a
937ac7d
eefe5ff
02e7173
5328395
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from django.contrib import admin | ||
|
||
# Register your models here. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class DashboardConfig(AppConfig): | ||
default_auto_field = 'django.db.models.BigAutoField' | ||
name = 'dashboard' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
from django.db import models | ||
|
||
#code models for various dashboard implementations | ||
|
||
class SponsorshipApplication(models.Model): | ||
STATUS_CHOICES = [("Pending", "Pending"), ("Approved", "Approved"), ("Rejected", "Rejected")] | ||
company_name = models.CharField(max_length=255) | ||
status = models.CharField(max_length=10, choices=STATUS_CHOICES, default="Pending") | ||
|
||
class VolunteerTask(models.Model): | ||
STATUS_CHOICES = [("Pending", "Pending"), ("Completed", "Completed")] | ||
title = models.CharField(max_length=255) | ||
status = models.CharField(max_length=10, choices=STATUS_CHOICES, default="Pending") | ||
|
||
class StaffTask(models.Model): | ||
STATUS_CHOICES = [("Pending", "Pending"), ("Completed", "Completed")] | ||
title = models.CharField(max_length=255) | ||
status = models.CharField(max_length=10, choices=STATUS_CHOICES, default="Pending") |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from django.test import TestCase | ||
|
||
# Create your tests here. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from django.urls import path | ||
from .views import staffteam_dashboard, sponsorship_dashboard, volunteer_dashboard, staff_dashboard | ||
|
||
urlpatterns = [ | ||
path("dashboard/", staffteam_dashboard, name="team_dashboard"), | ||
path("dashboard/sponsorship/", sponsorship_dashboard, name="sponsorship_dashboard"), | ||
path("dashboard/volunteer/", volunteer_dashboard, name="volunteer_dashboard"), | ||
] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
from django.shortcuts import render, redirect | ||
from django.contrib.auth.decorators import login_required | ||
from django.contrib.auth.models import Group | ||
from .models import SponsorshipApplication, VolunteerTask | ||
|
||
#views functionality | ||
#sample code for functionalities of various dashboards for various teams | ||
@login_required | ||
def staffteam_dashboard(request): | ||
""" Redirect users to their respective team dashboards based on group membership. """ | ||
if request.user.groups.filter(name="Sponsorship Team").exists(): | ||
return redirect("sponsorship_dashboard") | ||
elif request.user.groups.filter(name="Volunteer Team").exists(): | ||
return redirect("volunteer_dashboard") | ||
elif request.user.groups.filter(name="Staff Team").exists(): | ||
return redirect("staff_dashboard") | ||
else: | ||
return render(request, "dashboard/no_access.html") | ||
|
||
@login_required | ||
def sponsorship_dashboard(request): | ||
""" Dashboard for Sponsorship Team. """ | ||
if not request.user.groups.filter(name="Sponsorship Team").exists(): | ||
return render(request, "dashboard/no_access.html") | ||
|
||
total_applications = SponsorshipApplication.objects.count() | ||
approved = SponsorshipApplication.objects.filter(status="Approved").count() | ||
pending = SponsorshipApplication.objects.filter(status="Pending").count() | ||
rejected = SponsorshipApplication.objects.filter(status="Rejected").count() | ||
|
||
context = { | ||
"total_applications": total_applications, | ||
"approved": approved, | ||
"pending": pending, | ||
"rejected": rejected, | ||
} | ||
return render(request, "dashboard/sponsorship_dashboard.html", context) | ||
|
||
@login_required | ||
def volunteer_dashboard(request): | ||
""" Dashboard for Volunteer Management Team. """ | ||
if not request.user.groups.filter(name="Volunteer Team").exists(): | ||
return render(request, "dashboard/no_access.html") | ||
|
||
total_tasks = VolunteerTask.objects.count() | ||
completed_tasks = VolunteerTask.objects.filter(status="Completed").count() | ||
pending_tasks = VolunteerTask.objects.filter(status="Pending").count() | ||
|
||
context = { | ||
"total_tasks": total_tasks, | ||
"completed_tasks": completed_tasks, | ||
"pending_tasks": pending_tasks, | ||
} | ||
return render(request, "dashboard/volunteer_dashboard.html", context) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,8 @@ | |
"portal", | ||
"volunteer", | ||
"portal_account", | ||
"sponsorship", | ||
"dashboard", | ||
] | ||
|
||
MIDDLEWARE = [ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from django.contrib import admin | ||
|
||
# Register your models here. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class SponsorshipConfig(AppConfig): | ||
default_auto_field = 'django.db.models.BigAutoField' | ||
name = 'sponsorship' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#model schema creation for more functionality addition to sponsorship portal | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see a new model here but no migrations for Steps to add it
after that
and commit the migrations file. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. alright sir, i'll rectify this as well and get back to you |
||
from django.db import models | ||
|
||
class SponsorshipApplication(models.Model): | ||
STATUS_CHOICES = [ | ||
("Pending", "Pending"), | ||
("Approved", "Approved"), | ||
("Rejected", "Rejected"), | ||
] | ||
company_name = models.CharField(max_length=255) | ||
email = models.EmailField() | ||
tier = models.CharField(max_length=100) | ||
status = models.CharField(max_length=10, choices=STATUS_CHOICES, default="Pending") | ||
contract_sent = models.BooleanField(default=False) | ||
payment_received = models.BooleanField(default=False) | ||
|
||
def __str__(self): | ||
return f"{self.company_name} - {self.status}" | ||
|
||
class SponsorshipAsset(models.Model): | ||
sponsorship_application = models.ForeignKey(SponsorshipApplication, on_delete=models.CASCADE) | ||
asset_file = models.FileField(upload_to="sponsorship_assets/") | ||
uploaded_at = models.DateTimeField(auto_now_add=True) | ||
|
||
def __str__(self): | ||
return f"Asset for {self.sponsorship_application.company_name}" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from django.test import TestCase | ||
|
||
# Create your tests here. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
from django.shortcuts import render, get_object_or_404, redirect | ||
from django.http import JsonResponse | ||
from django.views.decorators.csrf import csrf_exempt | ||
from django.contrib.auth.decorators import login_required | ||
from .models import SponsorshipTier, SponsorshipApplication, SponsorshipAsset | ||
from .forms import SponsorshipTierForm, SponsorshipStatusForm, SponsorshipAssetForm | ||
|
||
|
||
"""from the above this is a sample code i am contributing of starting the sponsorship | ||
portal below, we would have to import the form and models which i havent | ||
written code for yet which is to be implemented in the views here""" | ||
|
||
# Creating views here. | ||
|
||
#code functionality for sponsorship tier creation | ||
@login_required | ||
def create_sponsorship_tier(request): | ||
""" Allow sponsorship team to define sponsorship tiers. """ | ||
if request.method == "POST": | ||
form = SponsorshipTierForm(request.POST) | ||
if form.is_valid(): | ||
form.save() | ||
return JsonResponse({"message": "Sponsorship tier created successfully!"}, status=201) | ||
else: | ||
form = SponsorshipTierForm() | ||
return render(request, "sponsorship/create_tier.html", {"form": form}) | ||
|
||
#code sample for tier listing | ||
@login_required | ||
def list_sponsorship_tiers(request): | ||
""" List all sponsorship tiers available. """ | ||
tiers = SponsorshipTier.objects.all() | ||
return render(request, "sponsorship/list_tiers.html", {"tiers": tiers}) | ||
|
||
#addition of more functionalities via sponsorship review code | ||
@login_required | ||
def review_sponsorship_applications(request): | ||
""" Allow sponsorship team to review applications. """ | ||
applications = SponsorshipApplication.objects.all() | ||
return render(request, "sponsorship/review_applications.html", {"applications": applications}) | ||
|
||
#code for sponsorship progress functionality | ||
@login_required | ||
def sponsorship_progress_overview(request): | ||
""" Display an overview of sponsorship progress. """ | ||
applications = SponsorshipApplication.objects.all() | ||
total_applications = applications.count() | ||
approved = applications.filter(status="Approved").count() | ||
pending = applications.filter(status="Pending").count() | ||
rejected = applications.filter(status="Rejected").count() | ||
contracts_sent = applications.filter(contract_sent=True).count() | ||
paid_sponsorships = applications.filter(payment_received=True).count() | ||
|
||
context = { | ||
"total_applications": total_applications, | ||
"approved": approved, | ||
"pending": pending, | ||
"rejected": rejected, | ||
"contracts_sent": contracts_sent, | ||
"paid_sponsorships": paid_sponsorships, | ||
} | ||
return render(request, "sponsorship/progress_overview.html", context) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see a new model here but no migrations file for
SponsorshipApplication
,VolunteerTask
,StaffTask
. Please Add it.Steps to add it
after that
and commit the migrations file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright sir , i was actually planning to do all that already as well, i just gave some samples code for you to see.
I'll correct that right away sir and get back to you