Skip to content

Commit

Permalink
Remove workspaces urls until completing the feature
Browse files Browse the repository at this point in the history
matagus committed Mar 8, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 56984fa commit d870983
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion config/urls.py
Original file line number Diff line number Diff line change
@@ -19,7 +19,6 @@
# User management
re_path(r"^users/", include("matorral.users.urls")),
# App
path(r"<workspace>/workspaces/", include("matorral.workspaces.urls", namespace="workspaces")),
path(r"<workspace>/", include("matorral.stories.urls", namespace="stories")),
path(r"<workspace>/sprints/", include("matorral.sprints.urls", namespace="sprints")),
path(r"", workspace_index, name="workspace:index"), # disabled for now, until we finish all the features
5 changes: 0 additions & 5 deletions matorral/templates/base.html
Original file line number Diff line number Diff line change
@@ -80,11 +80,6 @@ <h1 class="title has-text-white-bis">
Admin
</a>
{% endif %}
{% if current_workspace %}
<a class="navbar-item" href="{% url 'workspaces:workspace-list' current_workspace %}">
Workspaces
</a>
{% endif %}
<form method="post" action="{% url 'logout' %}" class="navbar-item">
{% csrf_token %}
<button class="button" type="submit" onclick="event.preventDefault(); this.form.submit();">

0 comments on commit d870983

Please sign in to comment.