Add dedicated page types for exports to avoid caching issues

This commit is contained in:
Björn Fromme
2018-06-27 12:55:01 +02:00
parent fa37142f32
commit 264d14f5f3
6 changed files with 49 additions and 3 deletions
@@ -9,11 +9,11 @@
<div class="row">
<div class="col-xs-12">
<h2>Gesamtexport XML</h2>
<f:link.action action="xml" arguments="{reseller: reseller}" target="_blank">Export XML</f:link.action>
<f:link.action arguments="{reseller: reseller}" pageType="1972" target="_blank">Export XML</f:link.action>
<h2>Einzelexport Excel</h2>
<ul>
<f:for each="{products}" as="product">
<li><f:link.action action="excel" arguments="{product: product, reseller: reseller}">Export XLS: {product.name}</f:link.action></li>
<li><f:link.action arguments="{product: product, reseller: reseller}" pageType="1984">Export XLS: {product.name}</f:link.action></li>
</f:for>
</ul>
</div>