Changeset View
Changeset View
Standalone View
Standalone View
films/models/production_logs.py
| from datetime import date, timedelta | from datetime import date, timedelta | ||||
| from django.contrib.auth.models import User | from django.contrib.auth.models import User | ||||
| from django.db import models | from django.db import models | ||||
| from assets.models import DynamicStorageFileField, StorageLocation | from static_assets.models import DynamicStorageFileField, StorageLocation | ||||
| from common import mixins | from common import mixins | ||||
| from common.upload_paths import get_upload_to_hashed_path | from common.upload_paths import get_upload_to_hashed_path | ||||
| from films.models import Asset, Film | from films.models import Asset, Film | ||||
| class ProductionLog(mixins.CreatedUpdatedMixin, models.Model): | class ProductionLog(mixins.CreatedUpdatedMixin, models.Model): | ||||
| """A log (collection) of all authors' production log entries in one week.""" | """A log (collection) of all authors' production log entries in one week.""" | ||||
| ▲ Show 20 Lines • Show All 106 Lines • Show Last 20 Lines | |||||