-
- {% endblock %}
- {% endspaceless %}
- {% endif %}
-
{% block messages %}
-
- -
- {% url 'admin:index' as link %}
- {% trans 'Home' as name %}
- {% include 'unfold/helpers/breadcrumb_item.html' with link=link name=name %}
- {% block custom_breadcrumbs %}{% endblock %}
-
diff --git a/surface/surfapp/templates/admin/change_list.html b/surface/surfapp/templates/admin/change_list.html
index aa3d1c2a..c1bc6dee 100644
--- a/surface/surfapp/templates/admin/change_list.html
+++ b/surface/surfapp/templates/admin/change_list.html
@@ -28,26 +28,6 @@
{% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} change-list{% endblock %}
-{% if not is_popup %}
- {% block breadcrumbs %}
-
-
- {% endblock %}
-{% endif %}
-
{% block coltype %}{% endblock %}
{% block nav-global-side %}
diff --git a/surface/surfapp/templates/unfold/helpers/header.html b/surface/surfapp/templates/unfold/helpers/header.html
deleted file mode 100644
index b61097d7..00000000
--- a/surface/surfapp/templates/unfold/helpers/header.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{% load unfold %}
-{% if not is_popup %}
- {% block header %}
-
-
- -
- {% url 'admin:index' as link %}
- {% trans 'Home' as name %}
- {% include 'unfold/helpers/breadcrumb_item.html' with link=link name=name %}
-
- {% url 'admin:app_list' app_label=cl.opts.app_label as link %}
- {% include 'unfold/helpers/breadcrumb_item.html' with link=link name=cl.opts.app_config.verbose_name %}
-
- {% url opts|admin_urlname:'changelist' as link %}
- {% include 'unfold/helpers/breadcrumb_item.html' with link=link name=cl.opts.verbose_name_plural|capfirst no_separator=True %}
-
-
- {% endblock %}
-{% endif %}
\ No newline at end of file
diff --git a/surface/surfapp/templates/unfold/helpers/header_title.html b/surface/surfapp/templates/unfold/helpers/header_title.html
new file mode 100644
index 00000000..a38a3883
--- /dev/null
+++ b/surface/surfapp/templates/unfold/helpers/header_title.html
@@ -0,0 +1,25 @@
+{% load i18n admin_urls %}
+{% spaceless %}
+ {% url 'admin:index' as admin_index_url %}
+ {% if not request or request.path != admin_index_url %}
+
+ {% translate "Home" %}
+
+
+ {% if parts %}
+ chevron_right
+ {% endif %}
+ {% endif %}
+
+ {% if parts %}
+ {% for part in parts %}
+ <{% if part.link %}a href="{{ part.link }}"{% else %}span{% endif %} class="align-middle inline-block leading-5 tracking-tight">
+ {{ part.title|capfirst }}
+ {% if part.link %}a{% else %}span{% endif %} >
+
+ {% if not forloop.last %}
+ chevron_right
+ {% endif %}
+ {% endfor %}
+ {% endif %}
+{% endspaceless %}
\ No newline at end of file
diff --git a/surface/surfapp/templates/unfold/helpers/welcomemsg.html b/surface/surfapp/templates/unfold/helpers/welcomemsg.html
deleted file mode 100644
index e864514d..00000000
--- a/surface/surfapp/templates/unfold/helpers/welcomemsg.html
+++ /dev/null
@@ -1,39 +0,0 @@
-{% load unfold i18n %}
-
-
-
-
-
-
-
-
- {% block usertools %}
- {% if has_permission %}
- {% block welcome-msg %}
- {% include 'unfold/helpers/welcomemsg.html' %}
- {% endblock %}
- {% component "unfold/components/navigation.html" with items=navigation %}{% endcomponent %}
- {% endif %}
- {% endblock %}
-
-
- {% block userlinks %}
- {% include 'unfold/helpers/userlinks.html' %}
- {% endblock %}
-
-
- {% if is_nav_sidebar_enabled %}
-
-
-
-
- dock_to_right
-
-
- {% endif %}
-
-
-
- {% include "unfold/helpers/header_back_button.html" %}
-
-
\ No newline at end of file