Build A Restaurant Site With Python And Djangorar Online
mkdir restaurant_site cd restaurant_site python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate` Use code with caution. Copied to clipboard pip install django Use code with caution. Copied to clipboard Start the project and app:
from django.db import models class Dish(models.Model): name = models.CharField(max_length=100) description = models.TextField() price = models.DecimalField(max_digits=6, decimal_places=2) is_vegetarian = models.BooleanField(default=False) image = models.ImageField(upload_to='dishes/', blank=True) def __str__(self): return self.name Use code with caution. Copied to clipboard Run these commands to create your database tables: python manage.py makemigrations python manage.py migrate Use code with caution. Copied to clipboard 🎛️ Step 3: Set Up the Admin Panel Build A Restaurant Site With Python and Djangorar
from django.contrib import admin from django.urls import path from menu.views import menu_list urlpatterns = [ path('admin/', admin.site.urls), path('', menu_list, name='menu_list'), ] Use code with caution. Copied to clipboard 🎨 Step 5: Design the HTML Template mkdir restaurant_site cd restaurant_site python -m venv venv
Built-in tools for user authentication and site administration. Copied to clipboard Run these commands to create
Now, create the logic to fetch dishes from the database and display them. in menu/views.py :
from django.contrib import admin from .models import Dish admin.site.register(Dish) Use code with caution. Copied to clipboard to log in: python manage.py createsuperuser Use code with caution. Copied to clipboard Follow the prompts to set your username and password. 🌐 Step 4: Create Views and URLs