Manager: regenerate views template to match the new version
This commit is contained in:
parent
b1c273e254
commit
9297cbc642
14 changed files with 141 additions and 152 deletions
|
@ -1,8 +0,0 @@
|
||||||
.types-de-champs-table {
|
|
||||||
table-layout: fixed;
|
|
||||||
|
|
||||||
td {
|
|
||||||
white-space: normal;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +1,5 @@
|
||||||
- if field.data.any?
|
- if field.data.any?
|
||||||
%table.collection-data.types-de-champs-table{ "aria-labelledby": "page-title" }
|
%table.collection-data{ "aria-labelledby": "page-title" }
|
||||||
%thead
|
%thead
|
||||||
%tr
|
%tr
|
||||||
%td.cell-label Libelle
|
%td.cell-label Libelle
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
-# # Application Layout
|
|
||||||
-#
|
|
||||||
-# This view template is used as the layout
|
|
||||||
-# for every page that Administrate generates.
|
|
||||||
-#
|
|
||||||
-# By default, it renders:
|
|
||||||
-# - Sidebar for navigation
|
|
||||||
-# - Content for a search bar
|
|
||||||
-# (if provided by a `content_for` block in a nested page)
|
|
||||||
-# - Flashes
|
|
||||||
-# - Links to stylesheets and Javascripts
|
|
||||||
|
|
||||||
!!!
|
|
||||||
%html{ lang: I18n.locale }
|
|
||||||
%head
|
|
||||||
%meta{ charset: "utf-8" }
|
|
||||||
%meta{ content: "NOODP", :name => "ROBOTS" }
|
|
||||||
%meta{ content: "initial-scale=1", :name => "viewport" }
|
|
||||||
%title
|
|
||||||
= content_for(:title)
|
|
||||||
| #{Rails.application.class.parent_name.titlecase}
|
|
||||||
= render "stylesheet"
|
|
||||||
= stylesheet_link_tag "new_design/manager", media: "all", "data-turbolinks-track": true
|
|
||||||
= csrf_meta_tags
|
|
||||||
%body
|
|
||||||
.app-container
|
|
||||||
.sidebar
|
|
||||||
= render "sidebar"
|
|
||||||
%main.main-content{ role: "main" }
|
|
||||||
= content_for(:search)
|
|
||||||
= render "flashes"
|
|
||||||
= yield
|
|
||||||
= render "javascript"
|
|
|
@ -1,16 +0,0 @@
|
||||||
- content_for(:title) do
|
|
||||||
= display_resource_name(page.resource_name)
|
|
||||||
|
|
||||||
- content_for(:search) do
|
|
||||||
- if show_search_bar
|
|
||||||
= render "search", search_term: search_term
|
|
||||||
|
|
||||||
%header.header
|
|
||||||
%h1.header__heading#page-title
|
|
||||||
= content_for(:title)
|
|
||||||
.header__actions
|
|
||||||
= link_to 'nouveau', new_manager_administrateur_path, class: 'button'
|
|
||||||
|
|
||||||
= render "collection", collection_presenter: page, resources: resources
|
|
||||||
|
|
||||||
= paginate resources
|
|
57
app/views/manager/administrateurs/show.html.erb
Normal file
57
app/views/manager/administrateurs/show.html.erb
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
<%#
|
||||||
|
# Show
|
||||||
|
|
||||||
|
This view is the template for the show page.
|
||||||
|
It renders the attributes of a resource,
|
||||||
|
as well as a link to its edit page.
|
||||||
|
|
||||||
|
## Local variables:
|
||||||
|
|
||||||
|
- `page`:
|
||||||
|
An instance of [Administrate::Page::Show][1].
|
||||||
|
Contains methods for accessing the resource to be displayed on the page,
|
||||||
|
as well as helpers for describing how each attribute of the resource
|
||||||
|
should be displayed.
|
||||||
|
|
||||||
|
[1]: http://www.rubydoc.info/gems/administrate/Administrate/Page/Show
|
||||||
|
%>
|
||||||
|
|
||||||
|
<% content_for(:title) { "#{t("administrate.actions.show")} #{page.page_title}" } %>
|
||||||
|
<% procedure = page.resource %>
|
||||||
|
|
||||||
|
<header class="main-content__header" role="banner">
|
||||||
|
<h1 class="main-content__page-title">
|
||||||
|
<%= content_for(:title) %>
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<%= link_to(
|
||||||
|
"#{t("administrate.actions.edit")} #{page.page_title}",
|
||||||
|
[:edit, namespace, page.resource],
|
||||||
|
class: "button",
|
||||||
|
) if valid_action? :edit %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<% if page.resource.invitation_expired? %>
|
||||||
|
<%= link_to "renvoyer l'invitation", reinvite_manager_administrateur_path(page.resource), method: :post, class: "button" %>
|
||||||
|
<% end %>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section class="main-content__body">
|
||||||
|
<dl>
|
||||||
|
<% page.attributes.each do |attribute| %>
|
||||||
|
<dt class="attribute-label" id="<%= attribute.name %>">
|
||||||
|
<%= t(
|
||||||
|
"helpers.label.#{resource_name}.#{attribute.name}",
|
||||||
|
default: attribute.name.titleize,
|
||||||
|
) %>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd class="attribute-data attribute-data--<%=attribute.html_class%>"
|
||||||
|
><%= render_field attribute %></dd>
|
||||||
|
<% end %>
|
||||||
|
</dl>
|
||||||
|
</section>
|
|
@ -1,20 +0,0 @@
|
||||||
%table.collection-data{ "aria-labelledby": "page-title" }
|
|
||||||
%thead
|
|
||||||
%tr
|
|
||||||
- collection_presenter.attribute_types.each do |attr_name, attr_type|
|
|
||||||
%th.cell-label{ class: "cell-label--#{attr_type.html_class} cell-label--#{collection_presenter.ordered_html_class(attr_name)}", scope: "col" }
|
|
||||||
= link_to(sanitized_order_params.merge(collection_presenter.order_params_for(attr_name))) do
|
|
||||||
= t("helpers.label.#{resource_name}.#{attr_name}", default: attr_name.to_s).titleize
|
|
||||||
|
|
||||||
- if collection_presenter.ordered_by?(attr_name)
|
|
||||||
%span.cell-label__sort-indicator{ class: "cell-label__sort-indicator--#{collection_presenter.ordered_html_class(attr_name)}" }
|
|
||||||
= svg_tag("administrate/sort_arrow.svg", "sort_arrow", width: "13", height: "13")
|
|
||||||
%th{ colspan: "2", scope: "col" }
|
|
||||||
|
|
||||||
%tbody
|
|
||||||
- resources.each do |resource|
|
|
||||||
%tr.table__row{ role: "link", tabindex: "0", "data-url": polymorphic_path([namespace, resource]) }
|
|
||||||
- collection_presenter.attributes_for(resource).each do |attribute|
|
|
||||||
%td.cell-data{ class: "cell-data--#{attribute.html_class}" }
|
|
||||||
= link_to polymorphic_path([namespace, resource]), class: "action-show table__link-plain" do
|
|
||||||
= render_field attribute
|
|
|
@ -1,5 +0,0 @@
|
||||||
- if flash.any?
|
|
||||||
.flashes
|
|
||||||
- flash.each do |key, value|
|
|
||||||
.flash{ class: "flash--#{key}" }
|
|
||||||
= value
|
|
|
@ -1,9 +0,0 @@
|
||||||
- Administrate::Engine.javascripts.each do |js_path|
|
|
||||||
= javascript_include_tag js_path
|
|
||||||
|
|
||||||
= yield :javascript
|
|
||||||
|
|
||||||
- if Rails.env.test?
|
|
||||||
= javascript_tag do
|
|
||||||
$.fx.off = true;
|
|
||||||
$.ajaxSetup({ async: false });
|
|
26
app/views/manager/application/_navigation.html.erb
Normal file
26
app/views/manager/application/_navigation.html.erb
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<%#
|
||||||
|
# Navigation
|
||||||
|
|
||||||
|
This partial is used to display the navigation in Administrate.
|
||||||
|
By default, the navigation contains navigation links
|
||||||
|
for all resources in the admin dashboard,
|
||||||
|
as defined by the routes in the `admin/` namespace
|
||||||
|
%>
|
||||||
|
|
||||||
|
<nav class="navigation" role="navigation">
|
||||||
|
<%= link_to "Se déconnecter", manager_sign_out_path, method: :delete, class: "navigation__link" %>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<% Administrate::Namespace.new(namespace).resources.each do |resource| %>
|
||||||
|
<%= link_to(
|
||||||
|
display_resource_name(resource),
|
||||||
|
[namespace, resource.path],
|
||||||
|
class: "navigation__link navigation__link--#{nav_link_state(resource)}"
|
||||||
|
) %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<%= link_to "Delayed Job", manager_delayed_job_path, class: "navigation__link" %>
|
||||||
|
</nav>
|
|
@ -1,16 +0,0 @@
|
||||||
%ul.sidebar__list
|
|
||||||
%li
|
|
||||||
= link_to "Se déconnecter", manager_sign_out_path, method: :delete, class: "sidebar__link"
|
|
||||||
|
|
||||||
%hr{ style: "margin-bottom: 0;" }
|
|
||||||
|
|
||||||
%ul.sidebar__list
|
|
||||||
- Administrate::Namespace.new(namespace).resources.each do |resource|
|
|
||||||
%li
|
|
||||||
= link_to(display_resource_name(resource), [namespace, resource], class: "sidebar__link sidebar__link--#{nav_link_state(resource)}")
|
|
||||||
|
|
||||||
%hr{ style: "margin-bottom: 0;" }
|
|
||||||
|
|
||||||
%ul.sidebar__list
|
|
||||||
%li
|
|
||||||
= link_to "Delayed Job", manager_delayed_job_path, class: "sidebar__link"
|
|
|
@ -1,15 +0,0 @@
|
||||||
- content_for(:title) do
|
|
||||||
= display_resource_name(page.resource_name)
|
|
||||||
|
|
||||||
- content_for(:search) do
|
|
||||||
- if show_search_bar
|
|
||||||
= render "search", search_term: search_term
|
|
||||||
|
|
||||||
%header.header
|
|
||||||
%h1.header__heading#page-title
|
|
||||||
= content_for(:title)
|
|
||||||
.header__actions
|
|
||||||
|
|
||||||
= render "collection", collection_presenter: page, resources: resources
|
|
||||||
|
|
||||||
= paginate resources
|
|
|
@ -1,13 +0,0 @@
|
||||||
- content_for(:title) { page.page_title }
|
|
||||||
|
|
||||||
%header.header
|
|
||||||
%h1.header__heading= content_for(:title)
|
|
||||||
.header__actions
|
|
||||||
|
|
||||||
%dl
|
|
||||||
- page.attributes.each do |attribute|
|
|
||||||
%dt.attribute-label
|
|
||||||
= t("helpers.label.#{resource_name}.#{attribute.name}", default: attribute.name.titleize)
|
|
||||||
|
|
||||||
%dd.attribute-data{ class: "attribute-data--#{attribute.html_class}" }
|
|
||||||
= render_field attribute
|
|
57
app/views/manager/procedures/show.html.erb
Normal file
57
app/views/manager/procedures/show.html.erb
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
<%#
|
||||||
|
# Show
|
||||||
|
|
||||||
|
This view is the template for the show page.
|
||||||
|
It renders the attributes of a resource,
|
||||||
|
as well as a link to its edit page.
|
||||||
|
|
||||||
|
## Local variables:
|
||||||
|
|
||||||
|
- `page`:
|
||||||
|
An instance of [Administrate::Page::Show][1].
|
||||||
|
Contains methods for accessing the resource to be displayed on the page,
|
||||||
|
as well as helpers for describing how each attribute of the resource
|
||||||
|
should be displayed.
|
||||||
|
|
||||||
|
[1]: http://www.rubydoc.info/gems/administrate/Administrate/Page/Show
|
||||||
|
%>
|
||||||
|
|
||||||
|
<% content_for(:title) { "#{t("administrate.actions.show")} #{page.page_title}" } %>
|
||||||
|
<% procedure = page.resource %>
|
||||||
|
|
||||||
|
<header class="main-content__header" role="banner">
|
||||||
|
<h1 class="main-content__page-title">
|
||||||
|
<%= content_for(:title) %>
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<%= link_to(
|
||||||
|
"#{t("administrate.actions.edit")} #{page.page_title}",
|
||||||
|
[:edit, namespace, page.resource],
|
||||||
|
class: "button",
|
||||||
|
) if valid_action? :edit %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<% if !procedure.whitelisted? %>
|
||||||
|
<%= link_to 'whitelister', whitelist_manager_procedure_path(procedure), method: :post, class: 'button' %>
|
||||||
|
<% end %>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section class="main-content__body">
|
||||||
|
<dl>
|
||||||
|
<% page.attributes.each do |attribute| %>
|
||||||
|
<dt class="attribute-label" id="<%= attribute.name %>">
|
||||||
|
<%= t(
|
||||||
|
"helpers.label.#{resource_name}.#{attribute.name}",
|
||||||
|
default: attribute.name.titleize,
|
||||||
|
) %>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd class="attribute-data attribute-data--<%=attribute.html_class%>"
|
||||||
|
><%= render_field attribute %></dd>
|
||||||
|
<% end %>
|
||||||
|
</dl>
|
||||||
|
</section>
|
|
@ -1,16 +0,0 @@
|
||||||
- content_for(:title) { page.page_title }
|
|
||||||
- procedure = page.resource
|
|
||||||
|
|
||||||
%header.header
|
|
||||||
%h1.header__heading= content_for(:title)
|
|
||||||
.header__actions
|
|
||||||
- if !procedure.whitelisted?
|
|
||||||
= link_to 'whitelister', whitelist_manager_procedure_path(procedure), method: :post, class: 'button'
|
|
||||||
|
|
||||||
%dl
|
|
||||||
- page.attributes.each do |attribute|
|
|
||||||
%dt.attribute-label
|
|
||||||
= t("helpers.label.#{resource_name}.#{attribute.name}", default: attribute.name.titleize)
|
|
||||||
|
|
||||||
%dd.attribute-data{ class: "attribute-data--#{attribute.html_class}" }
|
|
||||||
= render_field attribute
|
|
Loading…
Add table
Add a link
Reference in a new issue