mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-26 06:32:26 +00:00
Ajout des préférences pour la vérification du mail
This commit is contained in:
parent
b0de7f2611
commit
7c3c951146
2 changed files with 17 additions and 0 deletions
|
@ -102,6 +102,15 @@ class OptionalUser(AclMixin, PreferencesModel):
|
||||||
blank=True,
|
blank=True,
|
||||||
null=True
|
null=True
|
||||||
)
|
)
|
||||||
|
mail_verification = models.BooleanField(
|
||||||
|
default=True,
|
||||||
|
help_text = "Vérification du mail obligatoire"
|
||||||
|
)
|
||||||
|
verification_time = models.PositiveIntegerField(
|
||||||
|
blank=True,
|
||||||
|
null=True,
|
||||||
|
help_text = "Durée (en heures) pour vérifier son compte (laisser vide pour ne pas avoir de limite"
|
||||||
|
)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
permissions = (
|
permissions = (
|
||||||
|
|
|
@ -71,6 +71,14 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
<th>Shell par défaut des utilisateurs</th>
|
<th>Shell par défaut des utilisateurs</th>
|
||||||
<td>{{ useroptions.shell_default }}</td>
|
<td>{{ useroptions.shell_default }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Vérification du mail</th>
|
||||||
|
<td>{{ useroptions.mail_verification}}</td>
|
||||||
|
{% if useroptions.mail_verification %}
|
||||||
|
<th>Temps pour vérifier</th>
|
||||||
|
<td>{{ useroptions.verification_time | default:"0" }}h</td>
|
||||||
|
{% endif %}
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<h4>Préférences machines</h4>
|
<h4>Préférences machines</h4>
|
||||||
<a class="btn btn-primary btn-sm" role="button" href="{% url 'preferences:edit-options' 'OptionalMachine' %}">
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'preferences:edit-options' 'OptionalMachine' %}">
|
||||||
|
|
Loading…
Reference in a new issue