faltaban duracion y recomendaciones
This commit is contained in:
parent
07e5facf49
commit
ea39a9ae8b
4 changed files with 19 additions and 1 deletions
|
@ -51,7 +51,7 @@ class PostsController < ApplicationController
|
||||||
def post_params
|
def post_params
|
||||||
params.require(:post).permit(:title, :date, :content, :slug,
|
params.require(:post).permit(:title, :date, :content, :slug,
|
||||||
:cover, :layout, :permalink, :objetivos,
|
:cover, :layout, :permalink, :objetivos,
|
||||||
:duracion, :formato, :habilidades,
|
:duracion, :formato, :habilidades, :recomendaciones,
|
||||||
conocimientos: [], sesiones_ejercicios_relacionados: [],
|
conocimientos: [], sesiones_ejercicios_relacionados: [],
|
||||||
materiales_requeridos: [], lang: {},
|
materiales_requeridos: [], lang: {},
|
||||||
tags: [], categories: [])
|
tags: [], categories: [])
|
||||||
|
|
|
@ -64,6 +64,16 @@
|
||||||
= text_area 'post', 'objetivos', value: @post.get_front_matter(:objetivos),
|
= text_area 'post', 'objetivos', value: @post.get_front_matter(:objetivos),
|
||||||
class: 'form-control'
|
class: 'form-control'
|
||||||
%small.text-muted.form-text= t('posts.objetivos_help')
|
%small.text-muted.form-text= t('posts.objetivos_help')
|
||||||
|
.form-group
|
||||||
|
= label_tag 'post_recomendaciones', t('posts.recomendaciones')
|
||||||
|
= text_area 'post', 'recomendaciones', value: @post.get_front_matter(:recomendaciones),
|
||||||
|
class: 'form-control'
|
||||||
|
%small.text-muted.form-text= t('posts.recomendaciones_help')
|
||||||
|
.form-group
|
||||||
|
= label_tag 'post_duracion', t('posts.duracion')
|
||||||
|
= text_field 'post', 'duracion', value: @post.get_front_matter(:duracion),
|
||||||
|
class: 'form-control'
|
||||||
|
%small.text-muted.form-text= t('posts.duracion_help')
|
||||||
.form-group
|
.form-group
|
||||||
= label_tag 'post_habilidades', t('posts.habilidades')
|
= label_tag 'post_habilidades', t('posts.habilidades')
|
||||||
= select_tag 'post[habilidades]',
|
= select_tag 'post[habilidades]',
|
||||||
|
|
|
@ -31,6 +31,10 @@ en:
|
||||||
objetivos_help: 'Objectives of this session'
|
objetivos_help: 'Objectives of this session'
|
||||||
permalink: 'Permanent link'
|
permalink: 'Permanent link'
|
||||||
permalink_help: "If you want to access the post from a specific URL, use this field. Don\'t forget to start with a /"
|
permalink_help: "If you want to access the post from a specific URL, use this field. Don\'t forget to start with a /"
|
||||||
|
recomendaciones: 'Recommendations'
|
||||||
|
recomendaciones_help: 'Recommendations for this session'
|
||||||
|
duracion: 'Duration'
|
||||||
|
duracion_help: "How long does the session take to finish?"
|
||||||
habilidades: 'Skill level'
|
habilidades: 'Skill level'
|
||||||
habilidades_help: 'Skills required for this session'
|
habilidades_help: 'Skills required for this session'
|
||||||
formato: 'Format'
|
formato: 'Format'
|
||||||
|
|
|
@ -39,6 +39,10 @@ es:
|
||||||
sesiones_ejercicios_relacionados_help: 'Elige todas las sesiones relacionadas con esta'
|
sesiones_ejercicios_relacionados_help: 'Elige todas las sesiones relacionadas con esta'
|
||||||
materiales_requeridos: 'Materiales requeridos'
|
materiales_requeridos: 'Materiales requeridos'
|
||||||
materiales_requeridos_help: 'Materiales necesarios para esta sesión'
|
materiales_requeridos_help: 'Materiales necesarios para esta sesión'
|
||||||
|
recomendaciones: 'Recomendaciones'
|
||||||
|
recomendaciones_help: 'Recomendaciones para esta sesión'
|
||||||
|
duracion: 'Duración'
|
||||||
|
duracion_help: '¿Cuánto dura la sesión?'
|
||||||
lang:
|
lang:
|
||||||
es: 'Slug castellano'
|
es: 'Slug castellano'
|
||||||
en: 'Slug en inglés'
|
en: 'Slug en inglés'
|
||||||
|
|
Loading…
Reference in a new issue