|
|
@@ -580,13 +580,14 @@ def enviar_correo_inscritos_html(request, evento_id):
|
|
|
asunto_defecto = f"Información sobre {evento.nombre}"
|
|
|
mensaje_defecto = f"""<p>Hola a todos,</p>
|
|
|
|
|
|
-<p>Os escribimos para daros información sobre el pozo:</p>
|
|
|
+<p>Os escribimos para daros información sobre el evento:</p>
|
|
|
|
|
|
<ul>
|
|
|
- <li><strong>Descripción:</strong> {evento.nombre}</li>
|
|
|
+ <li><strong>Evento:</strong> {evento.nombre}</li>
|
|
|
<li><strong>Fecha:</strong> {evento.fecha.strftime('%d/%m/%Y')} a las {evento.hora}</li>
|
|
|
<li><strong>Precio:</strong> {evento.precio} € por persona</li>
|
|
|
</ul>
|
|
|
+"""
|
|
|
|
|
|
if evento.lugar:
|
|
|
mensaje_defecto += f'<p><strong>Lugar:</strong> <a href="{ evento.lugar.url_ubicacion }" target="_blank">{ evento.lugar.nombre }</a></p>'
|