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

Adding sample notes

The model has been created, and also the changes have been migrated. So you can further continue and start inserting values in the database.

This can be done using the command python manage.py shell . In Django, python manage.py shell is a command that opens an interactive Python shell with the settings of your Django project preloaded. This shell allows you to interactively work with your Django application and its database using Python code. It's a powerful tool for testing code snippets, debugging, and performing various tasks within the context of your Django project. You can perform database queries, insert data, update records, and delete items directly from the shell.

The interactive shell can be opened by typing the following command in the command prompt :

python manage.py shell

alt text The next step would be to import the Note model and create objects for it, which can be done as follows :

from notesapp.models import Note
Note.objects.create(title='Meeting Agenda', description='Discuss project updates and plan for next sprint.')
Note.objects.create(title='Grocery List', description='Milk, eggs, bread, vegetables, and fruits.')
Note.objects.create(title='Project Ideas', description='1. Create a portfolio website\n2. Learn a new programming language\n3. Start a blog')

alt textThe added notes can be viewed by typing the following command :

Note.objects.all()

alt text Further, the objects can be viewed in JSON format as follows :

Note.objects.all().values()

alt text After you're done working in the shell, you can exit by typing exit() or pressing Ctrl+D (or Ctrl+Z on Windows). alt text