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
2009-09-09 10:47:34 -03:00

20 lines
558 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= preserve(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"