diff --git a/db.sqlite3 b/db.sqlite3 index 0942cf75..a26858da 100644 Binary files a/db.sqlite3 and b/db.sqlite3 differ diff --git a/saburly/settings/__pycache__/base.cpython-310.pyc b/saburly/settings/__pycache__/base.cpython-310.pyc index 947f3c17..5cd8a909 100644 Binary files a/saburly/settings/__pycache__/base.cpython-310.pyc and b/saburly/settings/__pycache__/base.cpython-310.pyc differ diff --git a/templates/wagtailadmin/admin_base.html b/templates/wagtailadmin/admin_base.html new file mode 100644 index 00000000..6276d286 --- /dev/null +++ b/templates/wagtailadmin/admin_base.html @@ -0,0 +1,8 @@ +{% extends "wagtailadmin/admin_base.html" %} +{% load static %} + +{% block branding_favicon %} + +{% endblock %} + +{% block branding_title %}Saburly CMS{% endblock %} \ No newline at end of file diff --git a/templates/wagtailadmin/base.html b/templates/wagtailadmin/base.html new file mode 100644 index 00000000..f733aec4 --- /dev/null +++ b/templates/wagtailadmin/base.html @@ -0,0 +1,6 @@ +{% extends "wagtailadmin/base.html" %} +{% load static %} + +{% block branding_logo %} + Saburly Project +{% endblock %} \ No newline at end of file diff --git a/templates/wagtailadmin/home.html b/templates/wagtailadmin/home.html new file mode 100644 index 00000000..e99fc808 --- /dev/null +++ b/templates/wagtailadmin/home.html @@ -0,0 +1,3 @@ +{% extends "wagtailadmin/home.html" %} + +{% block branding_welcome %}Welcome to Saburly{% endblock %} \ No newline at end of file diff --git a/templates/wagtailadmin/login.html b/templates/wagtailadmin/login.html new file mode 100644 index 00000000..e7063584 --- /dev/null +++ b/templates/wagtailadmin/login.html @@ -0,0 +1,10 @@ +{% extends "wagtailadmin/login.html" %} +{% load static %} + +{% block branding_login %} + Saburly Project +{% endblock %} + +{% block branding_logo %} +

+{% endblock %} \ No newline at end of file