Skip to content

Development

MAGUISTRAL requested to merge development into staging

Goals

Main goal

nammed the browser tabs

Changes

Application

  • application.html.erb : <%= yield(:title) %> at the begginig of the head

Compost

  • /app/views/compost/index.html.erb : <% content_for :title, "OkCompost / Compost" %>
  • /app/views/compost/new.html.erb : <% content_for :title, "OkCompost / Créer un compost" %>
  • /app/views/compost/show.html.erb : <% content_for :title, "OkCompost / Compost" %>

Devise

  • /app/views/devise/registrations/new.html.erb : <% content_for :title, "OkCompost / Inscription" %>
  • /app/views/devise/registrations/edit.html.erb : <% content_for :title, "OkCompost / Paramètres Connexion" %>
  • /app/views/devise/sessions/new.html.erb : <% content_for :title, "OkCompost / Connexion" %>
  • /app/views/devise/passwords/new.html.erb : <% content_for :title, "OkCompost / Password" %>
  • /app/views/devise/passwords/edit.html.erb : <% content_for :title, "OkCompost / Change Password" %>

Result

  • /app/views/results/index.html.erb : <% content_for :title, "OkCompost / Notice" %>
  • /app/views/results/new.html.erb : <% content_for :title, "Bienvenue sur Ok Compost" %>
  • /app/views/results/show.html.erb : <% content_for :title, "OkCompost / Résultats" %>

User

  • /app/views/users/show.html.erb : <% content_for :title, "OkCompost / Profil" %> <% content_for :title, "OkCompost / Profil" %>

Tests

  • test 1 : look the tabs

Links

Side notes

Edited by MAGUISTRAL

Merge request reports