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.

31 lines
796 B

  1. ::use 'admin/design.mtt'::
  2. <h2>Dictionnaire de produits</h2>
  3. <p>
  4. Cagette.net inclut maintenant un dictionnaire de produits qui permet d'identifier
  5. facilement les produits que vous saisissez.
  6. </p>
  7. <hr/>
  8. ::foreach c categ::
  9. <img src="/img/taxo/cat::c.id::.png" style="float:right;width:100px;border:1px solid #666;" />
  10. <h4>#::c.id:: <a href="/db/TxpCategory/edit/::c.id::" target="_blank">::c.name::</a></h4>
  11. ::foreach sc c.getSubCategories()::
  12. <p style="margin-left:12px;">
  13. <b><a href="/db/TxpSubCategory/edit/::sc.id::" target="_blank">::sc.name::</a></b>
  14. <br/>
  15. ::foreach p sc.getProducts()::
  16. <a href="/db/TxpProduct/edit/::p.id::" target="_blank">::p.name::</a>,
  17. ::end::
  18. </p>
  19. ::end::
  20. ::end::
  21. ::end::