Skip to content

Commit

Permalink
feat: review
Browse files Browse the repository at this point in the history
  • Loading branch information
baptadn committed Jan 23, 2025
1 parent 2fad66a commit dbc5a75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const ApplicationPreselectButton = ({
<Text pl={1}>{t('place.detail.preselect')}</Text>
</Button>

{!canPreselect && (
{(!canPreselect || selectedCampaign?.mode === 'closed') && (
<Text pl={1} color="gray.500">
{t('place.preselected_limit_reached')}
</Text>
Expand Down
3 changes: 1 addition & 2 deletions web/pages/api/pdfs/campaign/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -485,13 +485,12 @@ const SelectedCampaignApplications = async (req, res) => {
const htmlContent = `
<!DOCTYPE html>
<html>
<head><title>${application?.creation_title}</title></head>
<head><title>Ref ${application.id} - Dossier artistique</title></head>
<body style="margin:0;padding:0;overflow:hidden">
<embed src="${application?.creation_file?.[0]?.url}" type="application/pdf" style="width:100%;height:100vh;">
</body>
</html>
`

await zip.addBuffer(
htmlContent,
`${name}/${subFolder}/${refLabel} - Dossier artistique.html`,
Expand Down
2 changes: 1 addition & 1 deletion web/public/locales/fr/application.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"validated": "Votre pré-sélection a bien été prise en compte pour ce créneau ! Pensez à le faire pour tous vos créneaux.",
"open_applications_start": "La période de candidatures pour le dispositif {{title}} est en cours :",
"open_applications_end": "vous pouvez consulter un aperçu des candidatures durant cette période mais ne pourrez consulter et télécharger les dossiers qu’au terme de celle-ci.",
"closed_campaign": "Cet appel a projet est clôturé, la page désormais est en lecture seule.",
"closed_campaign": "Cet appel à projets est clôturé, la page est désormais en lecture seule.",
"confirm_success": "Vos pré-sélections ont bien été transmises à StudioD"
},
"no_places": "Aucun de vos espaces ne propose de créneau pour ce dispositif",
Expand Down

0 comments on commit dbc5a75

Please sign in to comment.