11 lines
364 B
Plaintext
11 lines
364 B
Plaintext
<% tabs = [
|
|
(["User Management", @project.path + "/user"] if has_project_permission("Project:user")),
|
|
(
|
|
if has_project_permission("Project:viewaccess")
|
|
["Access Control", @project.path + "/user/access-control", request.path.include?("/user/access-control")]
|
|
end
|
|
)
|
|
]
|
|
tabs.compact! %>
|
|
<%== part("components/tabbar", tabs:) if tabs.length >= 2 %>
|