diff --git a/chsdi/templates/htmlpopup/fida_hfp1.mako b/chsdi/templates/htmlpopup/fida_hfp1.mako
index c8916eed46..bf62c543a6 100644
--- a/chsdi/templates/htmlpopup/fida_hfp1.mako
+++ b/chsdi/templates/htmlpopup/fida_hfp1.mako
@@ -8,6 +8,6 @@
${_(nummer)} | ${c['featureId']} |
${_('name')} | ${c['attributes']['punktname'] or '-'} |
${_('fp_E95_N95')} | ${'{0:.3f}'.format(c['attributes']['e95']) or '-'} / ${'{0:.3f}'.format(c['attributes']['n95']) or '-'} |
- ${_('fp_H02_fida')} | ${'{0:.3f}'.format(c['attributes']['h02']) or '-'} |
+ ${_('fp_H02_fida')} | ${'{0:.3f}'.format(c['attributes']['h02']) if c['attributes']['h02'] is not None else '-'} |
${_('protokoll')} | ${_('protokoll')} |
-%def>
\ No newline at end of file
+%def>
diff --git a/chsdi/templates/htmlpopup/fida_lfp1.mako b/chsdi/templates/htmlpopup/fida_lfp1.mako
index eec103c973..9e887c393e 100644
--- a/chsdi/templates/htmlpopup/fida_lfp1.mako
+++ b/chsdi/templates/htmlpopup/fida_lfp1.mako
@@ -9,6 +9,6 @@
${_('punktname')} | ${c['attributes']['punktname'] or '-'} |
${_('status_fida')} | ${c['attributes']['status'] or '-'} |
${_('fp_E95_N95')} | ${'{0:.3f}'.format(c['attributes']['e95']) or '-'} / ${'{0:.3f}'.format(c['attributes']['n95']) or '-'} |
- ${_('fp_H02_fida')} | ${'{0:.3f}'.format(c['attributes']['h02']) or '-'} |
+ ${_('fp_H02_fida')} | ${'{0:.3f}'.format(c['attributes']['h02']) if c['attributes']['h02'] is not None else '-'} |
${_('protokoll')} | ${_('protokoll')} |
%def>