X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/15da421f70d9170b04f0c8facd9c85b023f16eb7..bd4085d74f6ee6e743455b9be8b512ea41b37588:/models.py?ds=sidebyside diff --git a/models.py b/models.py index eb6ebc0..d3bf5d4 100644 --- a/models.py +++ b/models.py @@ -238,6 +238,9 @@ class Node(InheritableTreeEntity): def render_to_response(self, request, path=None, subpath=None): return HttpResponseServerError() + + class Meta: + unique_together=(('parent', 'slug',),) class MultiNode(Node): @@ -356,9 +359,7 @@ class Template(TreeModel): class Page(Node): """ - Represents an HTML page. The page will have a number of related Contentlets - depending on the template selected - but these will appear only after the - page has been saved with that template. + Represents an HTML page. The page will have a number of related Contentlets depending on the template selected - but these will appear only after the page has been saved with that template. """ template = models.ForeignKey(Template, related_name='pages') title = models.CharField(max_length=255)