Fix hard-coded export limit in template
Change-Id: Ice5eee4457c1a6d433410eb6e8d429bb0940b7c7
diff --git a/src/main/resources/assets/templates/export.ftl b/src/main/resources/assets/templates/export.ftl
index eeed57d..a66e7cc 100644
--- a/src/main/resources/assets/templates/export.ftl
+++ b/src/main/resources/assets/templates/export.ftl
@@ -114,7 +114,7 @@
<fieldset class="form-line">
<legend>${dict.hitc}</legend>
- <input name="hitc" id="hitc" type="number" min="1" max="10000" value="${defaultHitc}" />
+ <input name="hitc" id="hitc" type="number" min="1" max="${maxHitc?c}" value="${defaultHitc}" />
<p style="font-size: 80%; margin-top: .2em; margin-bottom: 0;">${dict.max_hitc} <tt>${maxHitc}</tt></p>
</fieldset>