Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
Admin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
osuny
Admin
Commits
b2734844
Commit
b2734844
authored
1 year ago
by
Arnaud Levy
Browse files
Options
Downloads
Patches
Plain Diff
people
parent
5f387b71
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/views/admin/university/people/_list.html.erb
+80
-43
80 additions, 43 deletions
app/views/admin/university/people/_list.html.erb
with
80 additions
and
43 deletions
app/views/admin/university/people/_list.html.erb
+
80
−
43
View file @
b2734844
<div
class=
"table-responsive"
>
<table
class=
"
<%=
table_classes
%>
"
>
<thead>
<tr>
<th>
<%=
University
::
Person
.
human_attribute_name
(
'last_name'
)
%>
</th>
<th>
<%=
University
::
Person
.
human_attribute_name
(
'first_name'
)
%>
</th>
<th>
<%=
University
::
Person
.
human_attribute_name
(
'roles'
)
%>
</th>
<th>
<%=
University
::
Person
::
Experience
.
model_name
.
human
(
count:
2
)
%>
</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<ul
class=
"nav nav-tabs"
id=
"myTab"
role=
"tablist"
>
<li
class=
"nav-item"
role=
"presentation"
>
<button
class=
"nav-link active"
id=
"grid-tab"
data-bs-toggle=
"tab"
data-bs-target=
"#grid-tab-pane"
type=
"button"
role=
"tab"
aria-controls=
"grid-tab-pane"
aria-selected=
"true"
>
<i
class=
"bi bi-grid-3x2-gap-fill"
></i>
</button>
</li>
<li
class=
"nav-item"
role=
"presentation"
>
<button
class=
"nav-link"
id=
"list-tab"
data-bs-toggle=
"tab"
data-bs-target=
"#list-tab-pane"
type=
"button"
role=
"tab"
aria-controls=
"tab-tab-pane"
aria-selected=
"false"
>
<i
class=
"bi bi-list"
></i>
</button>
</li>
</ul>
<div
class=
"tab-content"
id=
"myTabContent"
>
<div
class=
"tab-pane show active"
id=
"grid-tab-pane"
role=
"tabpanel"
aria-labelledby=
"grid-tab"
tabindex=
"0"
>
<div
class=
"row"
>
<%
people
.
each
do
|
person
|
%>
<
tr
>
<
td>
<%=
link_to
person
.
last_name
,
admin_university_person_path
(
person
)
%>
</td
>
<td>
<%=
link_to
person
.
first_name
,
admin_university_person_path
(
person
)
%>
</td
>
<td>
<%
person
.
roles
.
each
do
|
role
|
%>
<span
class=
"badge bg-secondary"
>
<%=
t
"activerecord.attributes.university/person.
#{
role
}
"
%>
<
/span
>
<
div
class=
"col-sm-6 col-lg-3"
>
<
div
class=
"position-relative mt-5"
>
<%
if
person
.
best_picture
.
attached?
%
>
<%=
kamifusen_tag
person
.
best_picture
,
width:
60
,
class:
'rounded-circle d-block'
%
>
<%
else
%>
<
div
class=
"bg-light rounded-circle"
style=
"width: 60px; height: 60px"
></div
>
<%
end
%>
</td>
<td>
<%=
link_to_if
can?
(
:update
,
person
),
person
.
experiences
.
size
,
experiences_admin_university_person_path
(
person
)
%>
</td>
<td>
<%=
kamifusen_tag
person
.
best_picture
,
width:
80
if
person
.
best_picture
.
attached?
%>
</td>
<td>
<div
class=
"btn-group"
role=
"group"
>
<%=
link_to
t
(
'edit'
),
edit_admin_university_person_path
(
person
),
class:
button_classes
if
can?
(
:update
,
person
)
%>
<%=
link_to
t
(
'delete'
),
admin_university_person_path
(
person
),
method: :delete
,
data:
{
confirm:
t
(
'please_confirm'
)
},
class:
button_classes_danger
if
can?
(
:destroy
,
person
)
%>
</div>
</td>
</tr>
<p
class=
"mt-2 mb-0"
>
<%=
person
%>
</p>
<p
class=
"small text-muted mb-0"
>
<%=
person
.
summary
%>
</p>
<%=
link_to
t
(
'show'
),
admin_university_person_path
(
person
),
class:
'action stretched-link'
%>
</div>
</div>
<%
end
%>
</tbody>
</table>
</div>
</div>
</div>
<div
class=
"tab-pane"
id=
"list-tab-pane"
role=
"tabpanel"
aria-labelledby=
"list-tab"
tabindex=
"0"
>
<div
class=
"table-responsive"
>
<table
class=
"
<%=
table_classes
%>
"
>
<thead>
<tr>
<th>
<%=
University
::
Person
.
human_attribute_name
(
'name'
)
%>
</th>
<th>
<%=
t
(
'admin.summary.label'
)
%>
</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<%
people
.
each
do
|
person
|
%>
<tr>
<td>
<%=
link_to
person
,
admin_university_person_path
(
person
)
%>
</td>
<td>
<%=
person
.
summary
%>
</td>
<td>
<%=
kamifusen_tag
person
.
best_picture
,
width:
60
,
class:
'rounded-circle'
if
person
.
best_picture
.
attached?
%>
</td>
<td>
<div
class=
"btn-group"
role=
"group"
>
<%=
link_to
t
(
'edit'
),
edit_admin_university_person_path
(
person
),
class:
button_classes
if
can?
(
:update
,
person
)
%>
</div>
</td>
</tr>
<%
end
%>
</tbody>
</table>
</div>
</div>
</div>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment