Make helpentry topic names unique. Add a description to the cross-platform startup script. Added a util directory and a MUX/MUSH help file importer script.

This commit is contained in:
Greg Taylor 2009-01-22 16:56:00 +00:00
parent cbd5fd9faa
commit 6715f76847
3 changed files with 134 additions and 2 deletions

View file

@ -10,7 +10,7 @@ class HelpEntry(models.Model):
"""
A generic help entry.
"""
topicname = models.CharField(max_length=255)
topicname = models.CharField(max_length=255, unique=True)
entrytext = models.TextField(blank=True, null=True)
staff_only = models.BooleanField(default=0)