Skip to content
Snippets Groups Projects
Commit 209bf79f authored by Arnaud Levy's avatar Arnaud Levy
Browse files

schools

parent ed035bcd
No related branches found
No related tags found
No related merge requests found
Showing
with 206 additions and 13 deletions
class Admin::Education::SchoolsController < Admin::Education::ApplicationController
load_and_authorize_resource class: Education::School
def index
@schools = current_university.education_schools
breadcrumb
end
def show
breadcrumb
end
def new
breadcrumb
end
def edit
breadcrumb
add_breadcrumb t('edit')
end
def create
@school.university = current_university
if @school.save
redirect_to [:admin, @school], notice: t('admin.successfully_created_html', model: @school.to_s)
else
breadcrumb
render :new, status: :unprocessable_entity
end
end
def update
if @school.update(school_params)
redirect_to [:admin, @school], notice: t('admin.successfully_updated_html', model: @school.to_s)
else
breadcrumb
add_breadcrumb t('edit')
render :edit, status: :unprocessable_entity
end
end
def destroy
@school.destroy
redirect_to admin_university_schools_url, notice: t('admin.successfully_destroyed_html', model: @school.to_s)
end
private
def breadcrumb
super
add_breadcrumb Education::School.model_name.human(count: 2), admin_education_schools_path
breadcrumb_for @school
end
def school_params
params.require(:education_school)
.permit(:university_id, :name, :address, :zipcode, :city, :country, :latitude, :longitude)
end
end
......@@ -20,6 +20,7 @@ class Ability
can :read, Communication::Website::Imported::Page, university_id: @user.university_id
can :read, Communication::Website::Imported::Post, university_id: @user.university_id
can :read, Education::Program, university_id: @user.university_id
can :read, Education::School, university_id: @user.university_id
can :read, Research::Researcher
can :read, Research::Journal, university_id: @user.university_id
can :read, Research::Journal::Article, university_id: @user.university_id
......
# == Schema Information
#
# Table name: education_schools
#
# id :uuid not null, primary key
# address :string
# city :string
# country :string
# latitude :float
# longitude :float
# name :string
# zipcode :string
# created_at :datetime not null
# updated_at :datetime not null
# university_id :uuid not null
#
# Indexes
#
# index_education_schools_on_university_id (university_id)
#
# Foreign Keys
#
# fk_rails_... (university_id => universities.id)
#
class Education::School < ApplicationRecord
belongs_to :university
def to_s
"#{name}"
end
end
......@@ -11,7 +11,7 @@
# text :text
# title :string
# created_at :datetime not null
# updated_at :datetime not null
# updated_at :date not null
# research_journal_id :uuid not null
# research_journal_volume_id :uuid
# university_id :uuid not null
......
......@@ -3,5 +3,6 @@ module University::WithEducation
included do
has_many :education_programs, class_name: 'Education::Program', dependent: :destroy
has_many :education_schools, class_name: 'Education::School', dependent: :destroy
end
end
......@@ -14,8 +14,10 @@
<td><%= link_to program, [:admin, program] %></td>
<td><%= program.level %></td>
<td class="text-end">
<%= edit_link program %>
<%= destroy_link program %>
<div class="btn-group" role="group">
<%= edit_link program %>
<%= destroy_link program %>
</div>
</td>
</tr>
<% end %>
......
<%= simple_form_for [:admin, school] do |f| %>
<div class="row">
<div class="col-md-4">
<%= f.input :name %>
</div>
<div class="col-md-8">
<%= f.input :address %>
<div class="row">
<div class="col-md-4">
<%= f.input :zipcode %>
</div>
<div class="col-md-8">
<%= f.input :city %>
</div>
</div>
<%= f.input :country %>
</div>
</div>
<% content_for :action_bar_right do %>
<%= submit f %>
<% end %>
<% end %>
<% content_for :title, @school %>
<%= render 'form', school: @school %>
<% content_for :title, Education::School.model_name.human(count: 2) %>
<table class="table">
<thead>
<tr>
<th><%= Education::School.human_attribute_name('name') %></th>
<th><%= Education::School.human_attribute_name('address') %></th>
<th><%= Education::School.human_attribute_name('zipcode') %></th>
<th><%= Education::School.human_attribute_name('city') %></th>
<th></th>
</tr>
</thead>
<tbody>
<% @schools.each do |school| %>
<tr>
<td><%= link_to school.name, [:admin, school] %></td>
<td><%= school.address %></td>
<td><%= school.zipcode %></td>
<td><%= school.city %></td>
<td class="text-end">
<div class="btn-group" role="group">
<%= edit_link school %>
<%= destroy_link school %>
</div>
</td>
<% end %>
</tbody>
</table>
<% content_for :action_bar_right do %>
<%= create_link Education::School %>
<% end %>
<% content_for :title, Education::School.model_name.human %>
<%= render 'form', school: @school %>
<% content_for :title, @school %>
<p>
<%= @school.address %><br>
<%= @school.zipcode %> <%= @school.city %><br>
<%= @school.country %>
</p>
<% content_for :action_bar_right do %>
<%= edit_link @school %>
<% end %>
......@@ -17,8 +17,10 @@
height: 100 if volume.cover.attached? %></td>
<td><%= volume.published_at %></td>
<td class="text-end">
<%= edit_link volume, { journal_id: @journal.id } %>
<%#= destroy_link volume, journal_id: @journal.id %>
<div class="btn-group" role="group">
<%= edit_link volume, { journal_id: @journal.id } %>
<%#= destroy_link volume, journal_id: @journal.id %>
</div>
</td>
</tr>
<% end %>
......
......@@ -17,8 +17,10 @@
<td><%= link_to "#{journal.volumes.count}", admin_research_journal_volumes_path(journal_id: journal) %></td>
<td><%= link_to "#{journal.articles.count}", admin_research_journal_articles_path(journal_id: journal) %></td>
<td class="text-end">
<%= edit_link journal %>
<%= destroy_link journal %>
<div class="btn-group" role="group">
<%= edit_link journal %>
<%= destroy_link journal %>
</div>
</td>
</tr>
<% end %>
......
......@@ -17,8 +17,10 @@
<td><%= link_to researcher.last_name, [:admin, researcher] %></td>
<td><%= link_to researcher.user, [:admin, researcher.user] if researcher.user %></td>
<td class="text-end">
<%= edit_link researcher %>
<%= destroy_link researcher %>
<div class="btn-group" role="group">
<%= edit_link researcher %>
<%= destroy_link researcher %>
</div>
</td>
</tr>
<% end %>
......
......@@ -9,7 +9,7 @@ SimpleNavigation::Configuration.run do |navigation|
if can?(:read, Education::Program)
primary.item :education, Education.model_name.human, nil, { kind: :header }
primary.item :education, 'Enseignants', nil, { icon: 'user-graduate' }
primary.item :education, 'Ecoles', nil, { icon: 'university' }
primary.item :education, Education::School.model_name.human(count: 2), admin_education_schools_path, { icon: 'university' } if can?(:read, Education::School)
primary.item :education_programs, Education::Program.model_name.human(count: 2), admin_education_programs_path, { icon: 'graduation-cap' } if can?(:read, Education::Program)
primary.item :education, 'Ressources éducatives', nil, { icon: 'laptop' }
primary.item :education, 'Feedbacks', nil, { icon: 'comments' }
......
......@@ -7,6 +7,9 @@ en:
education/program:
one: Program
other: Programs
education/school:
one: School
other: Schools
attributes:
education/program:
name: Name
......
......@@ -7,6 +7,9 @@ fr:
education/program:
one: Formation
other: Formations
education/school:
one: École
other: Écoles
attributes:
education/program:
name: Nom
......
Rails.application.routes.draw do
match "/delayed_job" => DelayedJobWeb, :anchor => false, :via => [:get, :post]
devise_for :users, controllers: {
confirmations: 'users/confirmations',
passwords: 'users/passwords',
......
namespace :education do
resources :programs
resources :programs, :schools
end
class CreateUniversitySchools < ActiveRecord::Migration[6.1]
def change
create_table :education_schools, id: :uuid do |t|
t.references :university, null: false, foreign_key: true, type: :uuid
t.string :name
t.string :address
t.string :zipcode
t.string :city
t.string :country
t.float :latitude
t.float :longitude
t.timestamps
end
end
end
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