{% extends "djangocopy/base.html" %} {% block title %}Signout{% endblock %} {% block djangocopy-content %}

This is the placeholder template
for the root page of django-copy

To overide with your page, register a new page in the admin panel and then register a root URL in the settings folder of your website

For example you can add the following to the urlpatterns definition:

path('', RedirectView.as_view(url='my_index_page', permanent=False)),
{% endblock djangocopy-content %}