-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#166 - added new admin email field and email confirmation sending whe…
…n new user is created
- Loading branch information
Showing
6 changed files
with
50 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 5.0 on 2024-05-30 09:17 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0011_node_add_takahe_invite_url'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='node', | ||
name='admin_email', | ||
field=models.EmailField(blank=True, help_text='Para mensajes de la herramienta', max_length=200, null=True, verbose_name='Email de administración'), | ||
), | ||
] |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% load settings_value %} | ||
|
||
<h2>Nueva usuaria registrada en la app.</h2> | ||
|
||
<p> | ||
{% if account %} | ||
Se ha creado correctamente un usuario en la app para {{account.display_name}} y se le ha enviado el email de bienvenida a {{account.email}} | ||
{% else %} | ||
Se ha creado correctamente un usuario en la app para {{user.email}} (Sin cuenta de miembro asociada) y se le ha enviado el email de bienvenida. | ||
{% endif %} | ||
</p> |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% load settings_value %} | ||
|
||
Nueva usuaria registrada en la app. | ||
|
||
{% if account %} | ||
Se ha creado correctamente un usuario en la app para {{account.display_name}} y se le ha enviado el email de bienvenida a {{account.email}} | ||
{% else %} | ||
Se ha creado correctamente un usuario en la app para {{user.email}} (Sin cuenta de miembro asociada) y se le ha enviado el email de bienvenida. | ||
{% 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