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.

produkt.hbs 639B

123456789101112
  1. <button type="button" class="produkt {{if this.isSelected "selected"}}" {{on "click" (fn this.toggleSelection @produkt.titel)}}>
  2. <img src={{@produkt.bild}} alt="Ein Bild von {{@produkt.titel}}"/>
  3. <div class="detail">
  4. <h3>{{@produkt.titel}}</h3>
  5. <ul class="details">
  6. <li class="detail"><h4>Menge:</h4> {{@produkt.menge}}{{@produkt.einheit}}</li>
  7. <!--<li class="detail"><h4>this.ex:</h4> {{this.ex}}</li>
  8. <li class="detail"><h4>this.prodn:</h4> {{this.prodn}}</li>
  9. <li class="detail"><h4>produkt count:</h4> {{this.count}}</li>-->
  10. </ul>
  11. </div>
  12. </button>