You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help_text="Number of days from the user's first qualification until the qualification expires (if the user never used the tool).",
66
+
null=True,
67
+
),
68
+
),
69
+
migrations.AddField(
70
+
model_name="tool",
71
+
name="_qualification_notification_email",
72
+
field=NEMO.fields.MultiEmailField(
73
+
db_column="qualification_notification_email",
74
+
blank=True,
75
+
help_text="The email addresses to cc on tool qualification expiration and on reminders. Separate multiple emails with commas.",
76
+
max_length=2000,
77
+
null=True,
78
+
),
79
+
),
80
+
migrations.AddField(
81
+
model_name="tool",
82
+
name="_qualification_reminder_days",
83
+
field=models.CharField(
84
+
db_column="qualification_reminder_days",
85
+
blank=True,
86
+
help_text="The (optional) number of days to send a reminder prior to the user's tool qualification expiration (below). A comma-separated list can be used for multiple reminders. This applies to both expiration cases.",
help_text="The (optional) number of days to send a reminder prior to the user's tool qualification expiration (below). A comma-separated list can be used for multiple reminders. This applies to both expiration cases.",
If active, this feature will remove tool qualification from a user if the user has not used the tool after a while or never used it since qualified (configured separately).
547
-
<p>
548
-
The <ahref="{% url 'customization' 'templates' %}?#tool_qualification_expiration_email_id">user tool qualification expiration email</a> need to be set to enable this feature.
549
-
</p>
550
-
<br/>
551
-
<divclass="form-group {% if errors.tool_qualification_reminder_days %}has-error{% endif %}">
The (optional) number of days to send a reminder prior to the user's tool qualification expiration (below). A comma-separated list can be used for multiple reminders. This applies to both expiration cases.
565
-
{% endif %}
566
-
</div>
567
-
</div>
568
-
<divclass="form-group {% if errors.tool_qualification_expiration_days %}has-error{% endif %}">
0 commit comments