This repository has been archived on 2022-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wikiufc/app/views/wiki/_form.html.haml
2015-09-03 19:21:02 -04:00

20 lines
546 B
Plaintext

= error_messages_for 'wiki_page'
%dl
%dt
%label{:for => 'wiki_page_title'} Título
%dd= text_field 'wiki_page', 'title'
%dt
%label{:for =>'wiki_page_content'}
Conteúdo
=markup_enabled_field
%dd=text_area('wiki_page', 'content')
- unless @wiki_page.new_record?
%dt
%label{:for => 'wiki_page_description'} Descrição das alterações
%dd= text_field('wiki_page', 'description', { :size => '80' })
%dt= check_box('wiki_page', 'front_page') + " Exibir página wiki na página inicial do curso"