- Set up Django 5.2.9 project structure - Add boxes app with Box and BoxType models - Box: alphanumeric ID (max 10 chars) with foreign key to BoxType - BoxType: name and dimensions (width/height/length in mm) - Configure admin interface for both models - Add comprehensive test suite (14 tests)
4 lines
63 B
Python
4 lines
63 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|