1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-25 15:51:31 +00:00

Merge pull request #6788 from patschi/lastmodified-default-value

Show "Never" by default if no last-modified date saved
This commit is contained in:
FreddleSpl0it
2025-09-29 11:37:52 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -147,7 +147,7 @@
<div class="row">
<div class="offset-sm-2 col-sm-10">
<small class="fst-italic d-block">{{ lang.edit.created_on }}: {{ result.created }}</small>
<small class="fst-italic d-block">{{ lang.edit.last_modified }}: {{ result.modified }}</small>
<small class="fst-italic d-block">{{ lang.edit.last_modified }}: {{ result.modified|default(lang.user.never) }}</small>
</div>
</div>
</form>

View File

@@ -325,7 +325,7 @@
<div class="row">
<div class="offset-sm-2 col-sm-10">
<small class="fst-italic d-block">{{ lang.edit.created_on }}: {{ result.created }}</small>
<small class="fst-italic d-block">{{ lang.edit.last_modified }}: {{ result.modified }}</small>
<small class="fst-italic d-block">{{ lang.edit.last_modified }}: {{ result.modified|default(lang.user.never) }}</small>
</div>
</div>
</form>