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:
parent
cbd5fd9faa
commit
6715f76847
3 changed files with 134 additions and 2 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue