Created
October 18, 2013 18:47
-
-
Save julioprotzek/7046190 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1 Editar artigo | |
== render 'form' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1 Artigos | |
table.table.table-striped | |
thead | |
tr | |
th Título | |
th Publicado em | |
th | |
tbody | |
- @articles.each do |article| | |
tr | |
td = article.title | |
td = article.published_at | |
td | |
.btn-group.pull-right | |
= link_to 'Ver', article, class: 'btn btn-default btn-sm' | |
= link_to 'Editar', edit_article_path(article), class: 'btn btn-default btn-sm' | |
= link_to 'Excluir', article, :confirm => 'Tem certeza?', :method => :delete, class: 'btn btn-default btn-sm' | |
br | |
= link_to 'Criar Artigo', new_article_path, class: 'btn btn-primary' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1 Novo artigo | |
== render 'form' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment