I'm currently working on a project that uses django-registration and Django CMS. When display the pages that implement django-registration my page titles do not render.
Currently have <title>{% page_attribute page_title %}</title>
in base.html which all my templates inherit from.
In the pages that do not use django-registration the titles display just fine, but django-registration display as <title></title>
My pages are all created within the CMS and everything else is rendering correctly. If I set the title explicitly within the template, the title will render, but I'd rather have it set within the CMS.
The relevant portion of registration_form.html is below:
{% extends "base.html" %}
{% load cms_tags %}
{% load i18n %}
{% block "html_headers" %}
<!-- conditional stuff here -->
<link href="/media/css/forms.css" rel="stylesheet" type="text/css" />
{% endblock %}
Thanks!