Django

College Event Registration Website

CampusConnect Introduction and Setup Configuring settings file for template, static and media files Setting up Tailwind Creating Custom User Model Creating Super User for CampusConnect Registering Custom User Model Search and Filter for User Model Serving Media Files During Development Categorizing Departments Linking Department with HOD Creating Abstract Model for Event Creating Model for Workshop Customizing Admin Page for Workshop Update in Model AbstractEvent Adding Instructor for Workshop Instructor Model Admin Page Adding Poster Field in Abstract Event Providing Access to HOD Access Update for HOD Restricting HOD Access to Particular Department AbstractEvent On Spot Registration Field Creating Workshop Object Creating and Linking Home Page Displaying Workshop on Home Page Styling Home Page Adding Workshop Detail Page Link Workshop Detail Page Workshop Detail Page Styling Workshop Instructor Details Workshop Detail Contact Contact Admin Page Many to Many Field for Contact Displaying Contact on Workshop Detail Page Adding Title for Workshop Detail Page Adding Gallery for Workshop Workshop Gallery Admin Page Displaying Gallery Images on Website Through Context Displaying Gallery Images on Website through template tags Authentication for users User Registration User Registration Submission Logout Functionality For User Login Functionality for User Model For Workshop Registration Workshop Registration Admin Page Register Workshop Function Register Button in Workshop Page Validations Before Workshop Registration Workshop Registration Closed Validaiton User Already Registered for Workshop Validation Workshop Registration Report From Admin Page Export using Library in Django Admin Extending Abstract Event for Hackathons

Validations Before Workshop Registration

In the previous section, we has seen how to register students for workshops. But there was no validation performed during the registration process. Validations such as wether the max registrations have reached, wether registrations for a particular workshop has started or wether a user has already registered for a particular workshop. These validations needs to be done before registration and the corresponding message should be displayed on the webpage.

So first, we shall check wether registrations are open for a particular workshop or not. This can be done be adding a method inside the AbstractEvent Model in event/models.py file :

from django.utils import timezone

def is_registration_open(self):
    if timezone.now()<self.registration_start_date:
        return False
    return True

Now, this method can be called on the workshop_detail page :

{% if not workshop.is_registration_open %}
    <div class="text-center mt-4">
        <button class="bg-gray-500 text-white font-semibold py-2 px-4 rounded-md cursor-not-allowed" disabled>
            The workshop Registration is not open yet !!.
        </button>
    </div>
    
{% else %}
    <div class="text-center mt-4">
        <form method="post" action="{% url 'register_workshop' workshop_slug=workshop.slug %}">
            {% csrf_token %}
            <button type="submit" class="bg-blue-500 hover:bg-blue-700 text-white text-xl font-semibold py-2 px-4 rounded-md transition-colors duration-300">
                Register
            </button>
        </form>
    </div>
{% endif %}

You can check this, by changing the registration start date through the admin page. alt text