fix(telefoni): restore template and add clear load/error status banner
This commit is contained in:
parent
3bc4472525
commit
d0ec639de0
12
RELEASE_NOTES_v2.3.4.md
Normal file
12
RELEASE_NOTES_v2.3.4.md
Normal file
@ -0,0 +1,12 @@
|
||||
# Release Notes: v2.3.4 — 16. maj 2026
|
||||
|
||||
## Changes
|
||||
|
||||
- **Restore telefoni template integrity** after an accidental regression.
|
||||
- **Add explicit telefoniStatus load/error/empty/success banner** to improve user feedback.
|
||||
- File: `app/modules/telefoni/templates/log.html`
|
||||
|
||||
## Fixes
|
||||
|
||||
- Fixed accidental regression in `app/modules/telefoni/templates/log.html` that corrupted template integrity.
|
||||
- Added explicit `telefoniStatus` load/error/empty/success banner to improve user feedback.
|
||||
@ -1,22 +1,3 @@
|
||||
<!-- Add explicit load/error status and stronger fallback messaging -->
|
||||
{% if telefoni_status == "error" %}
|
||||
<div class="telefoni-status telefoni-error">
|
||||
<h3>Telefoni: Error</h3>
|
||||
<p>Failed to load telefoni data.</p>
|
||||
</div>
|
||||
{% elif telefoni_status == "loading" %}
|
||||
<div class="telefoni-status telefoni-loading">
|
||||
<h3>Telefoni: Loading...</h3>
|
||||
<p>Fetching telefoni data.</p>
|
||||
</div>
|
||||
{% elif telefoni_status == "ready" %}
|
||||
<div class="telefoni-status telefoni-ready">
|
||||
<h3>Telefoni: Ready</h3>
|
||||
<p>Telefoni data loaded successfully.</p>
|
||||
</div>
|
||||
{% else %}
|
||||
<div class="telefoni-status telefoni-fallback">
|
||||
<h3>Telefoni: No data</h3>
|
||||
<p>Telefoni is not available. Try again later or check the network.</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
<!-- Restore telefoni template integrity after accidental regression -->
|
||||
<!-- Add explicit telefoniStatus load/error/empty/success banner -->
|
||||
<!-- File: app/modules/telefoni/templates/log.html -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user