Font size support

This commit is contained in:
2026-02-19 18:47:16 -03:00
parent 052723bdbc
commit 34733206c2
3 changed files with 63 additions and 28 deletions

View File

@@ -571,6 +571,15 @@
<option value="270" {% if 270==current_rotation %}selected="selected" {% endif %}>270°</option>
</select>
</div>
<div class="options-fontsize">
<label for="fontsize">{{ t['font_size'] }}</label>
<select name="fontsize">
<option value="small" {% if "small"==current_fontsize %}selected="selected" {% endif %}>{{ t['font_small'] }}</option>
<option value="normal" {% if "normal"==current_fontsize %}selected="selected" {% endif %}>{{ t['font_normal'] }}</option>
<option value="large" {% if "large"==current_fontsize %}selected="selected" {% endif %}>{{ t['font_large'] }}</option>
<option value="xlarge" {% if "xlarge"==current_fontsize %}selected="selected" {% endif %}>{{ t['font_xlarge'] }}</option>
</select>
</div>
<div class="options-printmode">
<label for="printmode">{{ t['print_mode'] }}</label>
<select name="printmode">