wagtail-longclaw/longclaw/contrib/productrequests/models.py

14 wiersze
445 B
Python

from django.db import models
from longclaw.settings import PRODUCT_VARIANT_MODEL
class ProductRequest(models.Model):
variant = models.ForeignKey(
PRODUCT_VARIANT_MODEL, related_name='requests', on_delete=models.CASCADE
)
created_date = models.DateTimeField(auto_now_add=True)
email = models.EmailField(
blank=True,
null=True,
help_text="Optional email of the customer who made the request"
)