Skip to content
Snippets Groups Projects
Unverified Commit f614abb3 authored by Sébastien Gaya's avatar Sébastien Gaya
Browse files

Merge branch 'main' into hal

parents ec06816f 1b7d800e
No related branches found
No related tags found
No related merge requests found
......@@ -94,6 +94,9 @@ class Admin::University::PeopleController < Admin::University::ApplicationContro
:habilitation, :tenure, :url, :linkedin, :twitter, :mastodon,
:is_researcher, :is_teacher, :is_administration, :is_alumnus,
:hal_person_identifier, :user_id
).merge(university_id: current_university.id)
).merge(
university_id: current_university.id,
language_id: current_university.default_language_id
)
end
end
......@@ -19,6 +19,7 @@ module User::WithPerson
person.last_name = last_name
person.slug = person.to_s.parameterize
person.user = self
person.language_id ||= university.default_language_id
person.save
end
......
<% content_for :title, @namespace.model_name.human %>
<div class="row mb-5">
<div class="row">
<div class="col-lg-7">
<p class="lead"><i><%= t "#{@namespace.to_s.underscore}.description.text" %></i></p>
<p><%= t "#{@namespace.to_s.underscore}.description.source" %></p>
<div>
<p class="lead"><i><%= t "#{@namespace.to_s.underscore}.description.text" %></i></p>
<p><%= t "#{@namespace.to_s.underscore}.description.source" %></p>
</div>
<div class="row pt-5 mt-5">
<% @namespace.parts.each do |part| %>
<%
class_name = part.first
path = send part.last
title = class_name.model_name.human(count: 2)
description = class_name.human_attribute_name('description')
# TODO
description = t 'administration.qualiopi.description' if class_name == Administration::Qualiopi
%>
<div class="col-lg-6 mt-5">
<%= osuny_panel title do %>
<p><%= description %></p>
<%= link_to t('show'), path, class: 'stretched-link' %>
<% end %>
</div>
<% end %>
</div>
</div>
<% if current_admin_theme == 'pure' %>
<div class="offset-lg-1 col-lg-4">
......@@ -15,22 +35,3 @@
</div>
<% end %>
</div>
<div class="row">
<% @namespace.parts.each do |part| %>
<%
class_name = part.first
path = send part.last
title = class_name.model_name.human(count: 2)
description = class_name.human_attribute_name('description')
# TODO
description = t 'administration.qualiopi.description' if class_name == Administration::Qualiopi
%>
<div class="col-lg-4 mt-4">
<%= osuny_panel title do %>
<p><%= description %></p>
<%= link_to t('show'), path, class: 'stretched-link' %>
<% end %>
</div>
<% end %>
</div>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment