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

Extending Abstract Event for Hackathons

As the workshop display along with its registration functionality is over, we can move on to our next event in the website which are hackathons. To start with it, we shall display all the fields that are required for displaying before the registration of hacakthon. To start with hackathon, has some cash prize available with it and usually during a hackathon, they would display a description about the hackathon in an about us section.

To do this, we shall create another model for it named hackathon on the event/models.py file :

class Hackathon(AbstractEvent):
    prizes_worth = models.CharField(max_length=255)
    description = models.TextField()

Next we shall run the migrations to create a table in the database. alt text Now, a table has been created in the database. So we can register this model in the admin page and perform CRUD operations there.

In the event/admin.py file :

from .models import Workshop, AbstractEvent, WorkshopInstructor, Contact, WorkshopGallery, Workshopregistration, Hackathon

@admin.register(Hackathon)
class HackathonAdmin(AbstractEventAdmin):
    list_display = AbstractEventAdmin.list_display
    search_fields = AbstractEventAdmin.search_fields + ['prizes_worth', 'description']
    fieldsets = (
        ('Basic Information', {
            'fields': ('name', 'slug', 'website_link', 'mail_id', 'on_spot_registration', 'max_registrations')
        }),
        ('Hackathon Details', {
            'fields': ('prizes_worth', 'description', 'target_audience', 'event_type', "department", 'poster', 'contacts')
        }),
        ('Dates', {
            'fields': ('start_date', 'end_date', 'registration_start_date', 'registration_end_date',)
        }),
    )

    def get_queryset(self, request):
        qs = super().get_queryset(request)
        if not request.user.is_superuser:
            qs=qs.filter(department = request.user.hodprofile.department)
        return qs

After adding the admin class, we can now view it in the admin page. alt text We can also add a hackathon by entering the corresponding details. alt text alt text After filling in all the details, the hackathon would be added. alt text