mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-25 21:28:33 +00:00
Compare commits
1 Commits
459-invita
...
424-displa
| Author | SHA1 | Date | |
|---|---|---|---|
| eb4a33ff75 |
@@ -1,6 +0,0 @@
|
||||
kind: Feature
|
||||
body: Add a counter for invitations awaiting reply
|
||||
time: 2025-11-25T16:58:11.780678466+01:00
|
||||
custom:
|
||||
Issue: "459"
|
||||
SchemaChange: No schema change
|
||||
6
.changes/unreleased/UX-20251125-150135.yaml
Normal file
6
.changes/unreleased/UX-20251125-150135.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
kind: UX
|
||||
body: Display entire comment for activity item within list
|
||||
time: 2025-11-25T15:01:35.558013876+01:00
|
||||
custom:
|
||||
Issue: "424"
|
||||
SchemaChange: No schema change
|
||||
@@ -136,7 +136,6 @@
|
||||
<div class="wl-col list">
|
||||
{{ activity.comment|chill_entity_render_box({
|
||||
'disable_markdown': false,
|
||||
'limit_lines': 3,
|
||||
'metadata': false,
|
||||
}) }}
|
||||
</div>
|
||||
|
||||
@@ -47,16 +47,10 @@ class MyInvitationsController extends AbstractController
|
||||
$paginator->getCurrentPageFirstItemNumber()
|
||||
);
|
||||
|
||||
$invitationsWaiting = count($this->inviteRepository->findBy([
|
||||
'user' => $user,
|
||||
'status' => 'pending',
|
||||
]));
|
||||
|
||||
$view = '@ChillCalendar/Invitations/listByUser.html.twig';
|
||||
|
||||
return $this->render($view, [
|
||||
'invitations' => $invitations,
|
||||
'invitationsWaiting' => $invitationsWaiting,
|
||||
'paginator' => $paginator,
|
||||
'templates' => $this->docGeneratorTemplateRepository->findByEntity(Calendar::class),
|
||||
]);
|
||||
|
||||
@@ -8,8 +8,6 @@
|
||||
|
||||
<h1>{{ 'invite.list.title'|trans }}</h1>
|
||||
|
||||
<p>{{ 'invite.number of invitations waiting'|trans }}: <span class="badge rounded-pill bg-primary mt-3">{{ invitationsWaiting }}</span></p>
|
||||
|
||||
{% if invitations|length == 0 %}
|
||||
<p class="chill-no-data-statement">
|
||||
{{ "invite.list.none"|trans }}
|
||||
|
||||
@@ -96,7 +96,6 @@ invite:
|
||||
list:
|
||||
none: Il n'y aucun invitation
|
||||
title: Mes invitations
|
||||
number of invitations waiting: Invitations en attente
|
||||
|
||||
# exports
|
||||
Exports of calendar: Exports des rendez-vous
|
||||
|
||||
Reference in New Issue
Block a user