Skip to content

Commit

Permalink
improved small touches
Browse files Browse the repository at this point in the history
  • Loading branch information
Lung committed Nov 9, 2024
1 parent 941f287 commit caf17bc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
4 changes: 2 additions & 2 deletions src/Application/Route.php
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,8 @@ public function addRoutesInto(App $app): App
});
});

$app->get($app->getBasePath() . '/{eventSlug}', EventController::class . '::redirectEvent')
->setName('redirectEvent');
$app->get($app->getBasePath() . '/{eventSlug}', EventController::class . '::landingPrettyUrl')
->setName('landingPrettyUrl');

return $app;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Event/EventController.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function list(Response $response): Response
);
}

public function redirectEvent(string $eventSlug, Request $request, Response $response): Response
public function landingPrettyUrl(string $eventSlug, Request $request, Response $response): Response
{
$event = $this->eventRepository->findBySlug($eventSlug);
if ($event === null) {
Expand Down
8 changes: 1 addition & 7 deletions src/Event/EventType/Navigamus/cs_navigamus.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
closed:
welcome: "Ahoj!"
successfullySent: "Úspěšně jsi poslal/a svou přihlášku na %event.getReadableName%. Nyní musíme kvůli účetnictví počkat do začátku roku 2022 (buď tedy trpělivý/á, prosím) a potom zkontrolujeme, zda je všechno v pořádku. Pokud ano, pošleme ti platební údaje."
chooseRole:
advicePlText: "je vedoucí skupiny účastníků. Účastníci se neregistrují samostatně, ale prostřednictvím svého vedoucího patroly. Ten je odpovědný za svoji patrolu v průběhu celé akce a také za ní jako celek platí registrační poplatek."
adviceIstText: " - spoustu dospělých dobrovolníků, bez kterých by akce neproběhla. Jedou, aby organizátorům pomohli se vším možným."
adviceIstText: " je spoustu dospělých dobrovolníků, bez kterých by akce neproběhla. Jedou, aby organizátorům pomohli se vším možným."
detail:
patrolNamePlaceholder: "stejný název jako pro předprogram, pokud jste se účastnili"
email:
payment-successful:
enjoy: "Prosím, vyplň dotazník o jídle a doprovodných programech na <a href='https://forms.gle/Y4MSmfdxoMw6gxRA9'>https://forms.gle/Y4MSmfdxoMw6gxRA9</a> a potom si můžeš plně užít čekání na nadcházející akci! Taky si nic neudělej, ujisti se že tvůj stan je připraven a očekávej další informace. ;)"
2 changes: 1 addition & 1 deletion src/Middleware/EventInfoMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function process(Request $request, ResponseHandler $handler): Response
$this->mailerSettings->setFullUrlLink(
$this->getRouter($request)->fullUrlFor(
$request->getUri(),
'landing',
'landingPrettyUrl',
['eventSlug' => $event->slug],
)
);
Expand Down
3 changes: 3 additions & 0 deletions src/Templates/translatable/widgets/detailsForAdmin.twig
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
{% endif %}
</b></i><br/>
{% endif %}
{% if not ca.email and person is hasUser %}
<i>{% trans %}detail.email{% endtrans %}: <b>{{ person.user.email }}</b></i><br/>
{% endif %}
{% if person is not PatrolParticipant and person.user.status.value != 'open' and person.getRegistrationCloseDate %}
<i>{% trans %}detail.closed-at{% endtrans %}: <b>{{ person.getRegistrationCloseDate.format('d. m. Y, H:i:s') }}</b></i><br/>
{% endif %}
Expand Down

0 comments on commit caf17bc

Please sign in to comment.