I am currently working on a project that uses django-registration and Django CMS. When displaying pages on which django registration is performed, page names are not displayed.
There is currently a <title>{% page_attribute page_title %}</title>
in base.html that inherits all my templates.
On pages that do not use django-registration, titles are displayed very well, but django-registration appears as <title></title>
My pages are created in CMS, and everything else is correct. If I set the title explicitly inside the template, the title will display it, but I would prefer it to be installed in the CMS.
The relevant part of registration_form.html is below:
{% extends "base.html" %} {% load cms_tags %} {% load i18n %} {% block "html_headers" %} <link href="/media/css/forms.css" rel="stylesheet" type="text/css" /> {% endblock %}
Thanks!
source share