Portal/rsconcept/backend/apps/library/models/LibraryTemplate.py

17 lines
448 B
Python
Raw Normal View History

2024-06-07 20:17:03 +03:00
''' Models: LibraryTemplate. '''
from django.db.models import CASCADE, ForeignKey, Model
class LibraryTemplate(Model):
''' Template for library items and constituents. '''
lib_source = ForeignKey(
2024-06-07 20:17:03 +03:00
verbose_name='Источник',
to='library.LibraryItem',
on_delete=CASCADE
2024-06-07 20:17:03 +03:00
)
class Meta:
''' Model metadata. '''
verbose_name = 'Шаблон'
verbose_name_plural = 'Шаблоны'