mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
fix flex item-col placement for documents list
This commit is contained in:
parent
ae0bf7bfd7
commit
1a05ffab96
@ -18,6 +18,7 @@ and this project adheres to
|
|||||||
* [Person/Household list] when listing other simultaneous members of an household, exclude the members on person, not on members (avoid to show two membersship with the same person)
|
* [Person/Household list] when listing other simultaneous members of an household, exclude the members on person, not on members (avoid to show two membersship with the same person)
|
||||||
* [draft periods] add a delete button (if acl granted) on each draft period listed on draft period page (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/463)
|
* [draft periods] add a delete button (if acl granted) on each draft period listed on draft period page (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/463)
|
||||||
* [Person] Display suffixText in RenderPerson, PersonText.vue, RenderPersonBox.vue (was made for displaying "enfant confie") (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/441)
|
* [Person] Display suffixText in RenderPerson, PersonText.vue, RenderPersonBox.vue (was made for displaying "enfant confie") (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/441)
|
||||||
|
* [documents] Improve flex-table item-col placement when long buttons and long metadata
|
||||||
|
|
||||||
## Test releases
|
## Test releases
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% if entity.updatedBy != null %}
|
{% if entity.updatedBy != null %}
|
||||||
{% if entity.updatedAt != null %}
|
{% if entity.updatedAt != null %}
|
||||||
{{ ', ' }}{{ 'by_user'|trans }}
|
{{ ', ' ~ 'by_user'|trans }}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ 'Last updated by'|trans }}
|
{{ 'Last updated by'|trans }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -29,7 +29,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% if entity.createdBy != null %}
|
{% if entity.createdBy != null %}
|
||||||
{% if entity.createdAt != null %}
|
{% if entity.createdAt != null %}
|
||||||
{{ ', ' }}{{ 'by_user'|trans }}
|
{{ ', ' ~ 'by_user'|trans }}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ 'Created by'|trans }}
|
{{ 'Created by'|trans }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user