{% extends "/layout/base.html" %} {% from "/macros/compare/compare-imageCells.html" import compareImageCells %} {% from "/macros/compare/compare-listCells.html" import compareListCells %} {% from "/macros/compare/compare-nameCells.html" import compareNameCells %} {% from "/macros/compare/compare-priceCells.html" import comparePriceCells %} {% from "/macros/compare/compare-ratingCells.html" import compareRatingCells %} {% from "/macros/compare/compare-textCells.html" import compareTextCells %} {% set products = comparableProducts.items %} {% set localI18n = comparableProducts.i18n %} {% block content %}
| {{ compareImageCells(products, localI18n.viewProfile) }} |
|---|
| {{ localI18n.name }} | {{ compareNameCells(products) }}
| {{ localI18n.description }} | {{ compareTextCells(products, 'description') }}
| {{ localI18n.features }} | {{ compareListCells(products, 'features') }}
| {{ localI18n.startingPrice }} | {{ comparePriceCells(products) }}
| {{ localI18n.category }} | {{ compareListCells(products, 'tags') }}
| {{ localI18n.developer }} | {{ compareTextCells(products, 'developer') }}
| {{ localI18n.rating }} | {{ compareRatingCells( products, 'rating', 'numberOfReview', localI18n.numReview, localI18n.numReviews, localI18n.noReviews ) }}
| {{ localI18n.editions }} | {{ compareListCells(products, 'editionNames') }}