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

Displaying Gallery Images on Website Through Context

To display the top images on the website, we need to bring the images to the web page. This can be done in two ways :

  1. Adding inside context in the function.
  2. Using template tags and getting the images.

Here, we will pass the images thorugh the context and in the next section, we will see how it can be done through template tags.

So we shall open the workshop_detail function and pass the gallery images as well. Inside event/views.py

from .models import Workshop, WorkshopGallery

def workshop_detail(request, slug):
    workshop = get_object_or_404(Workshop, slug=slug)
    gallery = WorkshopGallery.objects.filter(department=workshop.department)[:9]
    return render(request, 'event/workshop_detail.html', {'workshop': workshop, 'gallery':gallery})

Now as we are passing the values through the function, we can display the same in the web page. In the event/workshop_detail.html, we can add the gallery section as follows :

{% if gallery %}
    
        <h2 class="text-3xl text-orange-500 font-semibold mb-4 text-center mt-2">Gallery</h2>
        <div class="bg-gray-700 p-6 mb-6 rounded-lg">

            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
                {% for image in gallery %}
                    <img src={{image.image.url}} class="w-full h-auto">
                {% endfor %}
            </div>
            
    
        </div>
    {% endif %}

While making any html changes, make sure you are running python manage.py tailwind start alongside in a terminal. This will build the tailwind changes made automatically. alt text An output like this will be displayed while running the code.