mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-03 00:12:16 +02:00
19 lines
503 B
Python
19 lines
503 B
Python
from waffle.models import AbstractBaseSample
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class WaffleSample(AbstractBaseSample):
|
|
"""
|
|
Custom implementation of django-waffles 'sample' object.
|
|
Read more here: https://waffle.readthedocs.io/en/stable/types/sample.html
|
|
|
|
Use this class when dealing with samples.
|
|
"""
|
|
|
|
class Meta:
|
|
"""Contains meta information about this class"""
|
|
|
|
verbose_name = "waffle sample"
|
|
verbose_name_plural = "Waffle samples"
|