Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
""" # Tampro Marathon Django Project ## Overview Tampro is a Django-based web application for managing and promoting marathon events. The platform allows users to view event details, register for participation, and contribute to the event. The site features a modern, responsive design with countdown timers, ticket selection, and contact/feedback forms. ## Features - **Homepage:** Event highlights, countdown timer, navigation links. - **Registration:** User-friendly registration form for marathon participants. - **Contribution:** Page for event supporters to contribute. - **Responsive Design:** Works well on desktop and mobile devices. - **Static Files:** Custom CSS and images for branding. - **Footer:** Contact information, email addresses, and feedback form. - **Admin Panel:** Manage registrations and contributions through Django admin. - **Form Validation:** Client-side and server-side validation for all forms. - **Dynamic Countdown:** Live countdown timer for the marathon event. ## Project Structure tampro/ ├── TamptoProject/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── form.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ ├── views.py │ └── migrations/ ├── static/ │ ├── css/ │ │ ├── index.css │ │ ├── registration.css │ │ └── contribution.css │ ├── images/ │ │ └── ... (event images, logos, etc.) │ └── js/ │ └── index.js ├── templates/ │ ├── index.html │ ├── register.html │ └── contribution.html ├── manage.py └── README.py ## Setup Instructions 1. **Clone the repository:** ```bash git clone <your-repo-url> cd tampro ``` """