Mercurial > public > sg101
view weblinks/forms.py @ 974:d260aef91ad7
Prevent post preview from allowing mixed content.
Apply image_check() to post previews and display an error message instead of
the preview if it fails.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 01 Oct 2015 20:18:48 -0500 |
parents | ee87ea74d46b |
children | 176d1550bf25 |
line wrap: on
line source
""" Forms for the weblinks application. """ from django import forms from weblinks.models import PendingLink, Link class AddLinkForm(forms.ModelForm): title = forms.CharField(widget = forms.TextInput(attrs = {'size': 52})) url = forms.CharField(widget = forms.TextInput(attrs = {'size': 52})) def clean_url(self): new_url = self.cleaned_data['url'] try: Link.objects.get(url__iexact = new_url) except Link.DoesNotExist: return new_url raise forms.ValidationError('That link already exists in our database.') class Meta: model = PendingLink exclude = ('user', 'date_added', 'update_date')