Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

team overview dashboard #3233

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions blt/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
OrganizationDashboardManageBugsView,
OrganizationDashboardManageDomainsView,
OrganizationDashboardManageRolesView,
OrganizationDashboardTeamOverviewView,
RegisterOrganizationView,
ShowBughuntView,
SlackCallbackView,
Expand Down Expand Up @@ -692,6 +693,11 @@
OrganizationDashboardManageBugsView.as_view(),
name="organization_manage_bugs",
),
path(
"organization/<int:id>/dashboard/team-overview/",
OrganizationDashboardTeamOverviewView.as_view(),
name="organization_team_overview",
),
path(
"organization/<int:id>/dashboard/domains/",
OrganizationDashboardManageDomainsView.as_view(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ <h2 class="sidebar__logo-header font-bold">{{ organization_obj.name | slice:":15
<span>Analytics</span>
</li>
</a>
<a href="{% url 'organization_team_overview' organization %}">
<li id="team-overview" class="side-nav__item">
<i class="fa-sharp fa-solid fa-users fa-lg"></i>
<span>Team Overview</span>
</li>
</a>
<a href="{% url 'organization_manage_bugs' organization %}">
<li id="bugs" class="side-nav__item">
<i class="fa-sharp fa-solid fa-bug fa-lg"></i>
Expand All @@ -38,7 +44,7 @@ <h2 class="sidebar__logo-header font-bold">{{ organization_obj.name | slice:":15
</a>
<a href="{% url 'organization_manage_roles' organization %}">
<li id="domains" class="side-nav__item">
<i class="fa-sharp fa-solid fa-users fa-lg"></i>
<i class="fa-solid fa-network-wired fa-lg"></i>
<span>Roles</span>
</li>
</a>
Expand Down
Loading
Loading