Stripe checkout #104411
@ -1,5 +1,6 @@
|
||||
from typing import Iterable
|
||||
from datetime import date, timedelta
|
||||
from typing import Iterable
|
||||
import logging
|
||||
|
||||
from django.contrib.auth import get_user_model
|
||||
from django.db import models
|
||||
@ -10,6 +11,7 @@ from common.upload_paths import get_upload_to_hashed_path
|
||||
from films.models import Asset, Film
|
||||
|
||||
User = get_user_model()
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class ProductionLog(mixins.CreatedUpdatedMixin, mixins.StaticThumbnailURLMixin, models.Model):
|
||||
@ -143,7 +145,7 @@ class ProductionLogEntry(mixins.CreatedUpdatedMixin, models.Model):
|
||||
contributors = []
|
||||
for asset in self.assets.all():
|
||||
if not asset.static_asset:
|
||||
return []
|
||||
continue
|
||||
for contributor in asset.static_asset.contributors.all():
|
||||
if contributor.pk in contributors_ids:
|
||||
continue
|
||||
|
Loading…
Reference in New Issue
Block a user