skip to Main Content

DjangoSEO & Django 1.8 usage

I use Django 1.8 and Python 2.7. Recently I tried to use DjangoSEO package in my project. I accomplished everything according to this tutorial, but finally command python manage.py makemigrations doesn't detect any changes and command python manage.py migrate doesn't…

VIEW QUESTION

Form's clean method not getting called – SEO

I am trying to create some objects with django's CBV FormView the code for form_class is like this: class UrlForm(forms.Form): url = forms.CharField(required=True, help_text=_("This should be an absolute path, excluding the domain name. Example: '/events/search/'."), widget=forms.TextInput(attrs={'style':'width:400px;'})) title = forms.CharField(required=True, widget=forms.Textarea())…

VIEW QUESTION
Back To Top
Search