Skip to main content

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

  • Project model with title, description, owner, tags, progress, status, health, and deletion status.
  • Milestone model to track project milestones and progress.
  • TeamMember model for project team assignments.
  • Event model 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


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

If you're not sure about the file name format, learn more about wheel file names.

models_package_vasmoul-0.1.0-py3-none-any.whl (4.0 kB view details)

Uploaded Python 3

File details

Details for the file models_package_vasmoul-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for models_package_vasmoul-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c62f6a8f7e04cc3f1866406836dc81d8d7280a6144dacecab739e204cf6fa834
MD5 45f7c59bcf954a304d58e24374666b01
BLAKE2b-256 202e78395be0c105cb67a2e5291474a450c3da4cd66620ee7f5f527e81dfd946

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page