diff --git a/app/__init__.py b/app/__init__.py index 076b006a..bf465cbb 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -92,7 +92,7 @@ def create_app(config: Config = Config) -> Flask: app.register_blueprint(services_blueprint, url_prefix='/services') from .users import bp as users_blueprint - default_breadcrumb_root(users_blueprint, '.users') + default_breadcrumb_root(users_blueprint, '.social_area.users') app.register_blueprint(users_blueprint, url_prefix='/users') return app diff --git a/app/templates/_sidenav.html.j2 b/app/templates/_sidenav.html.j2 index 5ee67954..e05783a4 100644 --- a/app/templates/_sidenav.html.j2 +++ b/app/templates/_sidenav.html.j2 @@ -19,14 +19,18 @@ + {#
  • +
    + +
    +
  • #} {#
  • nopaque
  • #}
  • emailNews
  • helpManual
  • -
  • dashboardDashboard
  • -
  • IMy Corpora
  • -
  • JMy Jobs
  • -
  • new_labelMy Contributions
  • -
  • groupSocial Area
  • +
  • Dashboard
  • +
  • IMy Corpora
  • +
  • JMy Jobs
  • +
  • new_labelMy Contributions
  • Processes & Services
  • File setup
  • @@ -37,6 +41,9 @@
  • NLP
  • Corpus Analysis
  • +
  • Social Area
  • +
  • groupSocial Area
  • +
  • Account
  • settingsUser Settings
  • Log out
  • diff --git a/app/users/routes.py b/app/users/routes.py index 5431dfd0..bb1e25c6 100644 --- a/app/users/routes.py +++ b/app/users/routes.py @@ -26,7 +26,7 @@ from .utils import ( @bp.route('') -@register_breadcrumb(bp, '.', 'groupSocial Area') +@register_breadcrumb(bp, '.', 'groupUsers') @login_required def users(): return redirect(url_for('main.social_area', _anchor='users'))