Skip to content
Snippets Groups Projects
Commit 110568d3 authored by Flavio TARSETTI's avatar Flavio TARSETTI
Browse files

[accounts][models] create rejection status

parent d99cf786
No related branches found
No related tags found
1 merge request!328Improve automatic emails with temporary urls
...@@ -181,10 +181,12 @@ class TemporaryUrl(models.Model): ...@@ -181,10 +181,12 @@ class TemporaryUrl(models.Model):
# Self yearly revalidation from supervisee # Self yearly revalidation from supervisee
VALIDATION = "V" VALIDATION = "V"
YEARREVALIDATION = "Y" YEARREVALIDATION = "Y"
REJECTION = "R"
URL_STATUS = ( URL_STATUS = (
(VALIDATION, "Supervisor validates supervisee"), (VALIDATION, "Supervisor validates supervisee"),
(YEARREVALIDATION, "Self yearly revalidation from supervisee"), (YEARREVALIDATION, "Self yearly revalidation from supervisee"),
(REJECTION, "Supervisor rejects supervisee revalidation"),
) )
# _____ Fields __________ # _____ Fields __________
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment