Skip to content
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

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added dashboard/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions dashboard/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
6 changes: 6 additions & 0 deletions dashboard/apps.py
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'
Empty file.
18 changes: 18 additions & 0 deletions dashboard/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from django.db import models
Copy link
Contributor

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

make migrations

after that

make migrate

and commit the migrations file.

Copy link
Author

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


#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")
3 changes: 3 additions & 0 deletions dashboard/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
8 changes: 8 additions & 0 deletions dashboard/urls.py
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"),
]
54 changes: 54 additions & 0 deletions dashboard/views.py
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)
Binary file added portal/__pycache__/__init__.cpython-311.pyc
Binary file not shown.
Binary file added portal/__pycache__/settings.cpython-311.pyc
Binary file not shown.
2 changes: 2 additions & 0 deletions portal/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
"portal",
"volunteer",
"portal_account",
"sponsorship",
"dashboard",
]

MIDDLEWARE = [
Expand Down
Empty file added sponsorship/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions sponsorship/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
6 changes: 6 additions & 0 deletions sponsorship/apps.py
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'
Empty file.
26 changes: 26 additions & 0 deletions sponsorship/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#model schema creation for more functionality addition to sponsorship portal
Copy link
Contributor

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 for SponsorshipApplication model. Please Add it.

Steps to add it

make migrations

after that

make migrate

and commit the migrations file.

Copy link
Author

Choose a reason for hiding this comment

The 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}"
3 changes: 3 additions & 0 deletions sponsorship/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
Empty file added sponsorship/urls.py
Empty file.
62 changes: 62 additions & 0 deletions sponsorship/views.py
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)