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.

produkte.hbs 542B

12345678910111213141516171819
  1. <Jumbo>
  2. <h2>deine Produkte</h2>
  3. <p>Hier kannst du aus deinen Produkten wählen oder neue Produkte hinzufügen!</p>
  4. <LinkTo @route="produkte" class="button">Produkte bearbeiten</LinkTo>
  5. </Jumbo>
  6. <Kategorie @titel={{"Gemüse"}}>
  7. <div class="rentals">
  8. <ul class="results">
  9. {{#each @model as |produkt|}}
  10. {{#if (compare produkt.titel '===' 'Gemüse')}}
  11. <li><Produkt @produkt={{produkt}} /></li>
  12. {{/if}}
  13. <li><Produkt @produkt={{produkt}} /></li>
  14. {{/each}}
  15. </ul>
  16. </div>
  17. </Kategorie>