Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devnamdev2003/django_template
Django Template is a simple business web page based on Django. It includes an image slider to showcase various images related to the business and a contact form for users to get in touch.
https://github.com/devnamdev2003/django_template
bootstrap django python template
Last synced: 6 days ago
JSON representation
Django Template is a simple business web page based on Django. It includes an image slider to showcase various images related to the business and a contact form for users to get in touch.
- Host: GitHub
- URL: https://github.com/devnamdev2003/django_template
- Owner: devnamdev2003
- License: mit
- Created: 2022-12-02T05:01:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-09T09:19:20.000Z (about 1 year ago)
- Last Synced: 2023-10-10T04:29:10.934Z (about 1 year ago)
- Topics: bootstrap, django, python, template
- Language: JavaScript
- Homepage: https://djangopage.onrender.com/
- Size: 9.31 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Django Template
## Overview
Django Template is a simple business web page based on Django. It includes an image slider to showcase various images related to the business and a contact form for users to get in touch.
## [Preview](https://djangopage.onrender.com/)
## Features
- Image Slider: A visually appealing image slider to showcase business-related images.
- Contact Form: A contact form that allows users to send inquiries or feedback.
- Responsiveness: The web page is designed to be responsive, adapting to different screen sizes and devices.## Prerequisites
Before you begin, ensure you have the following prerequisites installed on your system:
- Python: The project requires Python to be installed. You can download the latest version of Python from the official website [Download](https://www.python.org/downloads/).
## Installation
1. Clone the repository to your local machine:
```bash
git clone https://github.com/devnamdev2003/django-template.git
cd django-template
```2. Create a virtual environment and activate it (recommended):
```bash
# Windows
python -m venv venv
venv\Scripts\activate# macOS/Linux
python3 -m venv venv
source venv/bin/activate
```3. Install the required dependencies:
```bash
pip install -r requirements.txt
```4. Run database migrations:
```bash
python manage.py migrate
```5. Create a superuser (optional but useful for testing the contact form):
```bash
python manage.py createsuperuser
```6. Run the Django development server:
```bash
python manage.py runserver
```7. Access the web page in your browser by navigating to `http://localhost:8000/`.
## License
This project is licensed under the [MIT License](LICENSE).