Sha256: 65188583a3194405eb425811f5f51c95fb3c86177184958060fa132e864b0c12

Contents?: true

Size: 938 Bytes

Versions: 8

Compression:

Stored size: 938 Bytes

Contents

- title @article.title
- description @article.text
- keywords @article.keywords

= link_to image_tag('pencil.png', style:'border:none; float:right;', id: 'article_pen'), {controller: "articles", action: "edit", article_id: @article.id}, data: { confirm: "Please Confirm" }
%div{"data-role" => "menu_mm", "data-theme" => "b", "data-backbtn"=>"false"}
  #article-title= @article.title

#article-text= @article.body.html_safe

- @comments.each do |comment|
  %div#article-comment.ui-corner-all
    Author:    
    %b= comment.user.code if comment.user
    %div#comment-body
      %i= comment.body
-# 
- if login?
  %h3 Add a comment:
  =# form_for([@comment, @article.comments.build]) do |f|
  = form_with(model: [@article, Comment.new], local: true) do |f|
    = f.hidden_field :article_id, :value => @article.id
    = f.label :body, "Comment"
    = f.text_area :body
    = f.hidden_field :user_id, :value => current_ma_user
    = f.submit

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jinda-0.7.0 lib/generators/jinda/templates/app/views/articles/show.html.haml
jinda-0.6.9 lib/generators/jinda/templates/app/views/articles/show.html.haml
jinda-0.6.8 lib/generators/jinda/templates/app/views/articles/show.html.haml
jinda-0.6.7 lib/generators/jinda/templates/app/views/articles/show.html.haml
jinda-0.6.5 lib/generators/jinda/templates/app/views/articles/show.html.haml
jinda-0.6.4 lib/generators/jinda/templates/app/views/articles/show.html.haml
jinda-0.6.3 lib/generators/jinda/templates/app/views/articles/show.html.haml
jinda-0.6.2 lib/generators/jinda/templates/app/views/articles/show.html.haml