Django models for Project Management Dashboard
Project description
models_package
A reusable Django models module containing the core data models for a Project Management Dashboard application.
This package can be used in any Django project to manage projects, their milestones, team members, and events.
Features
Projectmodel with title, description, owner, tags, progress, status, health, and deletion status.Milestonemodel to track project milestones and progress.TeamMembermodel for project team assignments.Eventmodel to log actions related to projects.- Easily integrated into existing Django projects.
Installation
You can install the package from PyPI:
pip install models_package
# Usage
# Add the app to your Django INSTALLED_APPS:
INSTALLED_APPS = [
...
'models_package',
]
# Run migrations
```bash
python manage.py makemigrations models_package
python manage.py migrate
# Usage of models
from models_package.models import Project, Milestone, TeamMember, Event
# Create a new project
project = Project.objects.create(
title="Project Alpha",
short_description="A short description",
owner="John Doe",
status="in_progress",
health="green"
)
# Add a milestone
Milestone.objects.create(
project=project,
title="Milestone 1",
description="Initial phase",
due_date="2025-12-01",
progress=50
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file models_package_vasmoul-0.1.0-py3-none-any.whl.
File metadata
- Download URL: models_package_vasmoul-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c62f6a8f7e04cc3f1866406836dc81d8d7280a6144dacecab739e204cf6fa834
|
|
| MD5 |
45f7c59bcf954a304d58e24374666b01
|
|
| BLAKE2b-256 |
202e78395be0c105cb67a2e5291474a450c3da4cd66620ee7f5f527e81dfd946
|