1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/notes/models/loot.py

26 lines
856 B
Python

from django.conf import settings
from django.db import models
from simple_history.models import HistoricalRecords
from notes.models import DescriptionModel
class Loot(DescriptionModel):
name = models.CharField(max_length=1000)
quantity = models.PositiveSmallIntegerField()
value_gold = models.DecimalField("Value (Gold)", max_digits=7, decimal_places=2)
owner = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.PROTECT, blank=True, null=True)
magic_item = models.BooleanField(default=False)
created = models.DateTimeField(auto_now_add=True)
last_modified = models.DateTimeField(auto_now=True)
history = HistoricalRecords()
class Meta:
ordering = ["name"]
@property
def value_per_unit(self):
return self.value_gold / self.quantity
def __str__(self):
return self.name