-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a8d4c3
commit 2b16b5e
Showing
5 changed files
with
100 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{% if employee_record.status == "SENT" %} | ||
<span class="badge rounded-pill badge-sm bg-warning"> | ||
<span class="badge rounded-pill badge-sm text-nowrap bg-warning"> | ||
Transmise à l'ASP le {{ employee_record.updated_at|date:"SHORT_DATETIME_FORMAT" }} | ||
</span> | ||
{% elif employee_record.status == "REJECTED" %} | ||
<span class="badge rounded-pill badge-sm bg-danger"> | ||
<span class="badge rounded-pill badge-sm text-nowrap bg-danger"> | ||
Retour en erreur le {{ employee_record.updated_at|date:"SHORT_DATETIME_FORMAT" }} | ||
</span> | ||
{% elif employee_record.status == "PROCESSED" %} | ||
<span class="badge rounded-pill badge-sm bg-success"> | ||
<span class="badge rounded-pill badge-sm text-nowrap bg-success"> | ||
Intégrée par l'ASP le {{ employee_record.updated_at|date:"SHORT_DATETIME_FORMAT" }} | ||
</span> | ||
{% elif employee_record.status == "READY" %} | ||
<span class="badge rounded-pill badge-sm bg-secondary"> | ||
<span class="badge rounded-pill badge-sm text-nowrap bg-secondary"> | ||
Complétée le {{ employee_record.updated_at|date:"SHORT_DATETIME_FORMAT" }} | ||
</span> | ||
{% elif employee_record.status == "DISABLED" %} | ||
<span class="badge rounded-pill badge-sm bg-emploi-lightest text-primary"> | ||
<span class="badge rounded-pill badge-sm text-nowrap bg-emploi-lightest text-primary"> | ||
Désactivée le {{ employee_record.updated_at|date:"SHORT_DATETIME_FORMAT" }} | ||
</span> | ||
{% elif employee_record.status == "ARCHIVED" %} | ||
<span class="badge rounded-pill badge-sm bg-emploi-lightest text-primary"> | ||
<span class="badge rounded-pill badge-sm text-nowrap bg-emploi-lightest text-primary"> | ||
Archivée le {{ employee_record.updated_at|date:"SHORT_DATETIME_FORMAT" }} | ||
</span> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters