hacken-in/hacken-in

View on GitHub
app/views/change_mailer/mail_create.html.haml

Summary

Maintainability
Test Coverage
!!! 5
%html
  %body
    %h1
      Neuer #{@record.class.to_s} # #{@record.id}
      - if @record.respond_to? (:title)
        \: #{@record.title}
    %p Angelegt von #{User.current.nil? ? "Anonym" : link_to(User.current.nickname, user_url(User.current))}.
    %table
      - @record.attributes.keys.each do |key|
        %tr
          %th= key
          %td= @record.attributes[key]