Skip to content

created sponsorship starting portal and it's available list #72

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

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 dashboard/__pycache__/__init__.cpython-311.pyc
Binary file not shown.
Binary file added dashboard/__pycache__/admin.cpython-311.pyc
Binary file not shown.
Binary file added dashboard/__pycache__/apps.cpython-311.pyc
Binary file not shown.
Binary file added dashboard/__pycache__/models.cpython-311.pyc
Binary file not shown.
Binary file added dashboard/__pycache__/urls.cpython-311.pyc
Binary file not shown.
Binary file added dashboard/__pycache__/views.cpython-311.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added portal/__pycache__/models.cpython-311.pyc
Binary file not shown.
Binary file added portal/__pycache__/urls.cpython-311.pyc
Binary file not shown.
Binary file added portal/__pycache__/views.cpython-311.pyc
Binary file not shown.
Binary file added portal/__pycache__/wsgi.cpython-311.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added portal_account/__pycache__/__init__.cpython-311.pyc
Binary file not shown.
Binary file added portal_account/__pycache__/admin.cpython-311.pyc
Binary file not shown.
Binary file added portal_account/__pycache__/apps.cpython-311.pyc
Binary file not shown.
Binary file added portal_account/__pycache__/forms.cpython-311.pyc
Binary file not shown.
Binary file added portal_account/__pycache__/models.cpython-311.pyc
Binary file not shown.
Binary file added portal_account/__pycache__/urls.cpython-311.pyc
Binary file not shown.
Binary file added portal_account/__pycache__/views.cpython-311.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
32 changes: 32 additions & 0 deletions sponsorship/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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
from .forms import SponsorshipTierForm

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