1

広範囲に検索しましたが、適切な答えが見つかりませんでした:

.activity
    - form_tag("/contacts/mightyfield_action", :method => "post",:class=>['form', 'form-add'])
        = text_field_tag(:name => "content", :rows => "6", :placeholder => "Notiz oder Aufgabe hinzufügen")
        .actions
            .help Hier steht vielleicht nützlicher Text
            .buttons.right
            = submit_tag("Send", :value => "Speichern", :class=>['btn', 'btn-primary'])

    %ul
        - @contact.actions.each do |action|
            %li
                .action-user
                    %img.avatar{ :src => "http://gravatar.com/avatar/#{@gravatar_id}?s=200", :width => "35px" }
                .action-content
                    = action.content
                    .action-meta= "von #{action.user.name} #{action.created_at}"


- content_for :sidebar do

    %h3 
        Aufgaben
        %span.small= "zu #{@contact.first_name} #{@contact.last_name}"

    .tasks
        %ul
        - @contact.tasks.each do |task|
            %li
                =check_box_tag(:pet_cat)
                =label_tag(:pet_cat, task.title)

エラー構文エラー、予期しないkeyword_ensure、 $end を期待すると、最後の2行がポップアップし続けます。私は完全に迷っています。

4

0 に答える 0