From 5e8eb74365d3cef3c9f158b00962e69709d4b518 Mon Sep 17 00:00:00 2001 From: Jordan Robinson Date: Sat, 20 Sep 2025 20:28:02 +0100 Subject: [PATCH] update dashboard to be workshop on the frontend --- main/templates/main/dashboard.html | 4 ++-- main/templates/main/guides_comments.html | 2 +- main/templates/main/guides_images.html | 4 ++-- main/templates/main/layout.html | 2 +- main/urls.py | 8 ++++---- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/main/templates/main/dashboard.html b/main/templates/main/dashboard.html index f0d4110e3c1a845d0480ed2986671af45c765081..2c2ca4ff4e75a1667066c07166769bd0f14cb68f 100644 --- a/main/templates/main/dashboard.html +++ b/main/templates/main/dashboard.html @@ -1,10 +1,10 @@ {% extends 'main/layout.html' %} -{% block title %}Dashboard — {{ request.user.username }}{% endblock %} +{% block title %}Workshop — {{ request.user.username }}{% endblock %} {% block content %}
-

Dashboard

+

Workshop

Hi {{ request.user.username }}, thank you for joining the fold. Within these pages, your thoughts may take shape and your stories may flourish. Write freely, explore boldly, and trust that this space remains devoted to your creativity and care. diff --git a/main/templates/main/guides_comments.html b/main/templates/main/guides_comments.html index 08ddb0c41e1f3911ab96540bb8a6d0b915027c40..7be5581cbf93571683088cd6790e2f387b918956 100644 --- a/main/templates/main/guides_comments.html +++ b/main/templates/main/guides_comments.html @@ -38,7 +38,7 @@ Blog authors can approve a comment either from each blog post page or from the Comments pending - dashboard page. + workshop page.

  • Commenters do not get any notification, in any case.
  • diff --git a/main/templates/main/guides_images.html b/main/templates/main/guides_images.html index 903fb7213115136c2181cad04d97cfceecd75aba..931f760d1e50ad582cdebcb753716b0e452c3bed 100644 --- a/main/templates/main/guides_images.html +++ b/main/templates/main/guides_images.html @@ -22,9 +22,9 @@

    Upload

    There are two ways to upload an asset. Either via the - assets dashboard, or via any post or page editing page. + assets workshop, or via any post or page editing page.

    -

    Assets dashboard: To upload, use the file selector at the top.

    +

    Assets workshop: To upload, use the file selector at the top.

    Post/page edit: To upload, just drag and drop onto the text area of the new post or page.

    diff --git a/main/templates/main/layout.html b/main/templates/main/layout.html index f1e3b60b4bfd835fd70df705adf925180e9424d9..f63847f01eea2fe89f7dc3009f8eac9c90760bc1 100644 --- a/main/templates/main/layout.html +++ b/main/templates/main/layout.html @@ -50,7 +50,7 @@ {% else %} View blog {% endif %} - | Dashboard + | Workshop | New post {% if blog_user.custom_domain %} | View at {{ blog_user.custom_domain }} diff --git a/main/urls.py b/main/urls.py index 02ae7ef2c10845ce229cf1e687e03c87a9275333..6eb13b9a9a79f96c40b4860a0b5f8d057fb2a24a 100644 --- a/main/urls.py +++ b/main/urls.py @@ -10,7 +10,7 @@ admin.site.site_header = "BōcPress admin" urlpatterns = [ path("", general.index, name="index"), path("blog/", general.blog_index, name="blog_index"), - path("dashboard/", general.dashboard, name="dashboard"), + path("workshop/", general.dashboard, name="dashboard"), path("about/methodology/", general.methodology, name="methodology"), path("about/transparency/", general.transparency, name="transparency"), path("about/comparisons/", general.comparisons, name="comparisons"), @@ -79,7 +79,7 @@ urlpatterns += [ # blog posts and post snapshots urlpatterns += [ - path("posts-dashboard/", general.PostList.as_view(), name="post_list_dashboard"), + path("posts-workshop/", general.PostList.as_view(), name="post_list_dashboard"), path( "post-backups/create/", general.SnapshotCreate.as_view(), name="snapshot_create" ), @@ -97,7 +97,7 @@ urlpatterns += [ path("post//", general.post_detail_redir, name="post_detail_redir_b"), path("blog//edit/", general.PostUpdate.as_view(), name="post_update"), path("blog//delete/", general.PostDelete.as_view(), name="post_delete"), - path("dashboard/homepage/", general.HomepageUpdate.as_view(), name="homepage_update"), + path("workshop/homepage/", general.HomepageUpdate.as_view(), name="homepage_update"), ] # blog extras @@ -115,7 +115,7 @@ urlpatterns += [ # really simple licensing path("license/", general.rsl_license_redirect, name="rsl_license_redirect"), path("license.xml", general.rsl_license_detail.as_view(), name="rsl_license"), - path("dashboard/licensing/", general.RSLUpdate.as_view(), name="rsl_update"), + path("workshop/licensing/", general.RSLUpdate.as_view(), name="rsl_update"), path("sitemap.xml", general.sitemap, name="sitemap"), path("robots.txt", general.robotstxt.as_view(), name="robots_txt"),