Мелочи по косметике

- вывод деталей о листе только при онлайн статусе
- копирование ссылки без промпта
- мелочи по подсказкам к разным элементам
This commit is contained in:
2025-10-29 00:40:47 +08:00
parent 3b0e1d8f18
commit ba8d59644c
4 changed files with 98 additions and 39 deletions

View File

@@ -86,6 +86,6 @@ class TwigExtention extends AbstractExtension
*/
public function toDate(?float $timestamp, string $format = 'd.m.Y H:i:s'): string
{
return $timestamp === null ? '(неизвестно)' : date($format, (int)$timestamp);
return $timestamp === null ? '' : date($format, (int)$timestamp);
}
}