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

Add more functionalities to sponsorship portal #73

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
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.
1 change: 1 addition & 0 deletions portal/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"portal",
"volunteer",
"portal_account",
"sponsorship",
]

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