stage name translation
[redakcja.git] / apps / catalogue / models / plan.py
1 # -*- coding: utf-8 -*-
2 #
3 # This file is part of MIL/PEER, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 #
6 from django.conf import settings
7 from django.db import models
8 from catalogue.models import Document
9
10
11 class Plan(models.Model):
12     document = models.ForeignKey(Document)
13     stage = models.CharField(max_length=128)
14     user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True)
15     deadline = models.DateField(null=True, blank=True)