+class ModelLookupWidget(forms.TextInput):
+ # is_hidden = False
+
+ def __init__(self, content_type, attrs=None):
+ self.content_type = content_type
+ super(ModelLookupWidget, self).__init__(attrs)
+
+ def render(self, name, value, attrs=None):
+ related_url = '../../../%s/%s/' % (self.content_type.app_label, self.content_type.model)
+ if attrs is None:
+ attrs = {}
+ if not attrs.has_key('class'):
+ attrs['class'] = 'vForeignKeyRawIdAdminField'
+ output = super(ModelLookupWidget, self).render(name, value, attrs)
+ output += '<a href="%s" class="related-lookup" id="lookup_id_%s" onclick="return showRelatedObjectLookupPopup(this);">' % (related_url, name)
+ output += '<img src="%simg/admin/selector-search.gif" width="16" height="16" alt="%s" />' % (settings.ADMIN_MEDIA_PREFIX, _('Lookup'))
+ output += '</a>'
+ if value:
+ value_class = self.content_type.model_class()
+ try:
+ value_object = value_class.objects.get(pk=value)
+ output += ' <strong>%s</strong>' % escape(truncate_words(value_object, 14))
+ except value_class.DoesNotExist:
+ pass
+ return mark_safe(output)
+
+class NodeForm(forms.ModelForm):
+
+ def __init__(self, *args, **kwargs):
+ super(NodeForm, self).__init__(*args, **kwargs)
+ instance = self.instance
+ try:
+ self.fields['parent'].queryset = instance.node_ptr.__class__.objects.exclude(id=instance.id)
+ except ObjectDoesNotExist:
+ pass
+
+ def clean(self):
+ cleaned_data = self.cleaned_data
+ parent = self.cleaned_data['parent']
+ self.instance.validate_parents(parent)
+
+ try:
+ Node.objects.get(slug=self.cleaned_data['slug'], parent=parent)
+ raise ValidationError("A node with that path (parent and slug) already exists.")
+ except ObjectDoesNotExist:
+ pass
+
+ return cleaned_data
+
+class PageAdminForm(NodeForm):
+ class Meta:
+ model=Page
+
+class RedirectAdminForm(NodeForm):
+ class Meta:
+ model=Redirect
+
+class FileAdminForm(NodeForm):
+ class Meta:
+ model=File
+