Pracuję z HAML i pracuję nad konwersją mojego pierwszego pliku. Pozornie prawidłowy pominięcie "- koniec":ERB vs HAML konwersja warunku if?
- if current_user
= link_to 'Edit Profile', edit_user_path(current_user.id)
= link_to 'Logout', logout_path
- else
= link_to 'Register', new_user_path
= link_to 'Login', login_path
dostaje mnie:
app/views/layouts/application.html.haml:28: syntax error, unexpected kENSURE, expecting kEND
app/views/layouts/application.html.haml:30: syntax error, unexpected $end, expecting kEND
Choć logiczny
- if current_user
= link_to 'Edit Profile', edit_user_path(current_user.id)
= link_to 'Logout', logout_path
- else
= link_to 'Register', new_user_path
= link_to 'Login', login_path
- end
dostaje mnie:
You don't need to use "- end" in Haml. Use indentation instead:
- if foo?
%strong Foo!
- else
Not foo.
Jak czy otrzymam tę kondycję? onal oświadczenie działa w HAML?
masz odpowiedź na swoje pytanie .... Komunikat o błędzie mówi dokładnie, co robić. – nitecoder