https://github.com/wyntonfranklin/dgroups
A groups web app built using django as a tutorial
https://github.com/wyntonfranklin/dgroups
python python-tutorial
Last synced: 8 months ago
JSON representation
A groups web app built using django as a tutorial
- Host: GitHub
- URL: https://github.com/wyntonfranklin/dgroups
- Owner: wyntonfranklin
- Created: 2019-03-03T00:47:33.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-07T00:45:54.000Z (about 7 years ago)
- Last Synced: 2025-07-07T01:05:00.931Z (8 months ago)
- Topics: python, python-tutorial
- Language: Python
- Homepage: https://wftutorials.blog/2019/03/07/the-django-web-framework/
- Size: 47.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dgroups
This is a tutorial using the Django Web Framework. I built it to help me understand web development using this python web framework. I also wrote a blog about building this application. You can find the url for the blog somewhere.
Django is a really cool web framework and was very intuitive. The name of the project is dgroups which means django groups. It basically is a application to create users and groups and attach users to groups.
Learn more about Djagno here - https://www.djangoproject.com/
.
## Preview

## Installation
```bash
# download repo
git clone https://github.com/wyntonfranklin/dgroups.git
# Go into repo
cd dgroups
#Install dependencies
Use pip to install dependencies. Only crispy_forms used
pip install --upgrade django-crispy-forms
#run the app
python manage.py runserver
```
## Features
- Create groups
- Create users
- Create members
- Login and Logout
- Delete group
- View group details
## Topics Covered
- Routing
- Rendering Views
- Templates
- Models and Databases
- Migrations
- Forms
- Authentication and Access Control
- Admin site