You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rezept.hbs 1.2KB

123456789101112131415161718192021222324252627282930
  1. {{#if @isSelected}}
  2. <button type="button" class="rezept selected" {{on "click" (fn this.toggleSelection @titel)}}>
  3. <span><img src={{@bild}} alt="Ein Bild von {{@titel}}"/></span>
  4. <span>
  5. <h3>{{@titel}}</h3>
  6. <ul class="details">
  7. <li class="detail"><h4>Zutaten:</h4>{{#each @produkte as |produkt|}}
  8. {{produkt.attributes.titel}},
  9. {{/each}}Gewürze</li>
  10. <li class="detail"><h4>Personen:</h4>{{@personen}}</li>
  11. <li class="detail"><h4>Dauer:</h4>{{@dauer}} Minuten</li>
  12. </ul>
  13. </span>
  14. </button>
  15. {{else}}
  16. <button type="button" class="rezept" {{on "click" (fn this.toggleSelection @titel)}}>
  17. <span><img src={{@bild}} alt="Ein Bild von {{@titel}}"/></span>
  18. <span>
  19. <h3>{{@titel}}</h3>
  20. <ul class="details">
  21. <li class="detail"><h4>Zutaten:</h4>{{#each @produkte as |produkt|}}
  22. {{produkt.attributes.titel}},
  23. {{/each}}Gewürze</li>
  24. <li class="detail"><h4>Personen:</h4>{{@personen}} </li>
  25. <li class="detail"><h4>Dauer:</h4>{{@dauer}} Minuten</li>
  26. </ul>
  27. </span>
  28. </button>
  29. {{/if}}