fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/models.py

12 lines
325 B
Python
Raw Normal View History

2014-03-18 15:54:01 +00:00
from django.db import models
from django.utils.translation import ugettext_lazy as _
class ReviewModel(models.Model):
for_review = models.BooleanField(_('For review'), default=False)
2014-03-26 11:24:11 +00:00
for_review_comment = models.TextField(
_('Review comment'), null=True, blank=True)
2014-03-18 15:54:01 +00:00
class Meta:
abstract = True