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
203ff482
Commit
203ff482
authored
3 years ago
by
pabois
Browse files
Options
Downloads
Patches
Plain Diff
close #61
parent
373f6eb2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/views/admin/education/programs/show.html.erb
+80
-53
80 additions, 53 deletions
app/views/admin/education/programs/show.html.erb
config/locales/education/en.yml
+1
-1
1 addition, 1 deletion
config/locales/education/en.yml
config/locales/education/fr.yml
+1
-1
1 addition, 1 deletion
config/locales/education/fr.yml
with
82 additions
and
55 deletions
app/views/admin/education/programs/show.html.erb
+
80
−
53
View file @
203ff482
<%
content_for
:title
,
@program
%>
<p>
<strong>
Name:
</strong>
<%=
@program
.
name
%>
</p>
<div
class=
"row"
>
<p>
<strong>
Level:
</strong>
<%=
@program
.
level
%>
</p>
<div
class=
"col-md-4"
>
<div
class=
"card flex-fill w-100"
>
<div
class=
"card-header"
>
<h2
class=
"card-title mb-0 h5"
>
<%=
t
(
'education.program.main_informations'
)
%>
</h2>
</div>
<div
class=
"card-body"
>
<h3
class=
"h5"
>
<%=
Education
::
Program
.
human_attribute_name
(
'name'
)
%>
</h3>
<%=
@program
.
name
%>
<h3
class=
"h5 mt-4"
>
<%=
Education
::
Program
.
human_attribute_name
(
'level'
)
%>
</h3>
<%=
@program
.
level
%>
<h3
class=
"h5 mt-4"
>
<%=
Education
::
Program
.
human_attribute_name
(
'capacity'
)
%>
</h3>
<%=
@program
.
capacity
%>
<h3
class=
"h5 mt-4"
>
<%=
Education
::
Program
.
human_attribute_name
(
'ects'
)
%>
</h3>
<%=
@program
.
ects
%>
<h3
class=
"h5 mt-4"
>
<%=
Education
::
Program
.
human_attribute_name
(
'continuing'
)
%>
</h3>
<%=
t
@program
.
continuing
%>
<%
if
@program
.
schools
.
any?
%>
<h3
class=
"h5 mt-4"
>
<%=
Education
::
Program
.
human_attribute_name
(
'schools'
)
%>
</h3>
<ul
class=
"list-unstyled"
>
<%
@program
.
schools
.
ordered
.
each
do
|
school
|
%>
<li>
<%=
link_to_if
can?
(
:read
,
school
),
school
,
[
:admin
,
school
]
%>
</li>
<%
end
%>
</ul>
<%
end
%>
</div>
</div>
</div>
<div
class=
"col-md-8"
>
<div
class=
"card flex-fill w-100"
>
<div
class=
"card-header"
>
<h5
class=
"card-title mb-0"
>
<%=
t
(
'education.program.useful_informations'
)
%>
</h5>
</div>
<div
class=
"card-body"
>
<%
i
=
0
%>
<%
[
'registration'
,
'pricing'
,
'duration'
,
'contacts'
,
'accessibility'
,
'other'
].
each
do
|
prop
|
%>
<%
next
if
@program
.
public_send
(
prop
).
blank?
%>
<h3
class=
"h5
<%=
'mt-4'
if
i
>
0
%>
"
>
<%=
Education
::
Program
.
human_attribute_name
(
prop
)
%>
</h3>
<%=
@program
.
public_send
prop
%>
<%
i
+=
1
%>
<%
end
%>
</div>
</div>
</div>
</div>
<p>
<strong>
Capacity:
</strong>
<%=
@program
.
capacity
%>
</p>
<div
class=
"card flex-fill w-100"
>
<div
class=
"card-header"
>
<h5
class=
"card-title mb-0"
>
<%=
t
(
'education.program.educational_informations'
)
%>
</h5>
</div>
<div
class=
"card-body"
>
<div
class=
"row"
>
<div
class=
"col-md-6"
>
<%
i
=
0
%>
<%
[
'prerequisites'
,
'objectives'
,
'opportunities'
].
each
do
|
prop
|
%>
<%
next
if
@program
.
public_send
(
prop
).
blank?
%>
<h3
class=
"h5
<%=
'mt-4'
if
i
>
0
%>
"
>
<%=
Education
::
Program
.
human_attribute_name
(
prop
)
%>
</h3>
<%=
@program
.
public_send
prop
%>
<%
i
+=
1
%>
<%
end
%>
</div>
<div
class=
"col-md-6"
>
<%
i
=
0
%>
<%
[
'pedagogy'
,
'evaluation'
].
each
do
|
prop
|
%>
<%
next
if
@program
.
public_send
(
prop
).
blank?
%>
<h3
class=
"h5
<%=
'mt-4'
if
i
>
0
%>
"
>
<%=
Education
::
Program
.
human_attribute_name
(
prop
)
%>
</h3>
<%=
@program
.
public_send
prop
%>
<%
i
+=
1
%>
<%
end
%>
<%
if
@program
.
teachers
.
any?
%>
<h3
class=
"h5
<%=
'mt-4'
if
i
>
0
%>
"
>
<%=
Education
::
Program
.
human_attribute_name
(
'teachers'
)
%>
</h3>
<ul
class=
"list-unstyled"
>
<%
@program
.
teachers
.
ordered
.
each
do
|
teacher
|
%>
<li>
<%=
link_to_if
can?
(
:read
,
teacher
),
teacher
,
[
:admin
,
teacher
]
%>
</li>
<%
end
%>
</ul>
<%
end
%>
</div>
</div>
</div>
</div>
<p>
<strong>
Ects:
</strong>
<%=
@program
.
ects
%>
</p>
<p>
<strong>
Continuing:
</strong>
<%=
@program
.
continuing
%>
</p>
<p>
<strong>
Prerequisites:
</strong>
<%=
@program
.
prerequisites
%>
</p>
<p>
<strong>
Objectives:
</strong>
<%=
@program
.
objectives
%>
</p>
<p>
<strong>
Duration:
</strong>
<%=
@program
.
duration
%>
</p>
<p>
<strong>
Registration:
</strong>
<%=
@program
.
registration
%>
</p>
<p>
<strong>
Pedagogy:
</strong>
<%=
@program
.
pedagogy
%>
</p>
<p>
<strong>
Evaluation:
</strong>
<%=
@program
.
evaluation
%>
</p>
<p>
<strong>
Accessibility:
</strong>
<%=
@program
.
accessibility
%>
</p>
<%
content_for
:action_bar_right
do
%>
<%=
edit_link
@program
%>
...
...
This diff is collapsed.
Click to expand it.
config/locales/education/en.yml
+
1
−
1
View file @
203ff482
...
...
@@ -31,7 +31,7 @@ en:
prerequisites
:
Prérequis
pricing
:
Tarifs
registration
:
Modalités et délais d’accès
schools
:
Schools
schools
:
Schools
with this formation
teachers
:
Teachers
education/school
:
address
:
Address
...
...
This diff is collapsed.
Click to expand it.
config/locales/education/fr.yml
+
1
−
1
View file @
203ff482
...
...
@@ -31,7 +31,7 @@ fr:
prerequisites
:
Prérequis
pricing
:
Tarifs
registration
:
Modalités et délais d’accès
schools
:
Écoles
schools
:
Écoles
proposant cette formation
teachers
:
Enseignants·es
education/school
:
address
:
Adresse
...
...
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