~widelands-dev/widelands-website/wlwebsite_docker

« back to all changes in this revision

Viewing changes to wiki/models.py

  • Committer: franku
  • Date: 2016-12-19 07:33:38 UTC
  • mto: This revision was merged to the branch mainline in revision 447.
  • Revision ID: somal@arcor.de-20161219073338-judejf0poapjikir
correction and cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 
49
49
 
50
50
class Article(models.Model):
51
 
    """A wiki page."""
 
51
    """A wiki page reflecting the actual revision."""
52
52
    title = models.CharField(_(u"Title"), max_length=50, unique=True)
53
53
    content = models.TextField(_(u"Content"))
54
54
    summary = models.CharField(_(u"Summary"), max_length=150,