please i need to help i send this lien http://127.0.0.1:8000/benevole/demande_participer/id:?/ in email user but id is not Read in email
Thanks in advance
JavaScript
x
5
1
---this is the urls.py
2
3
path('benevole/demande_participer/<int:id>', views.demande_participer, name='demande_participer'),
4
5
—— this is views.py =>
JavaScript
1
17
17
1
def demande_participer(request,id):
2
3
4
5
participers=Mission.objects.get(id=id)
6
benParticiper=User.objects.filter(username=request.user)
7
8
template=render_to_string('Association/email_template.html')
9
email=EmailMessage(
10
'Veuillez confirmer votre participation a la mission proposer',#header message
11
template, # h1
12
settings.EMAIL_HOST_USER,
13
[request.user.email],
14
)
15
email.fail_silenty=False
16
email.send()
17
—this is email_template.html
JavaScript
1
9
1
{% load crispy_forms_tags %}
2
{% block content %}
3
Confirmé la Participation
4
5
6
http://127.0.0.1:8000/benevole/demande_participer/id:?/
7
8
{% endblock %}
9
Advertisement
Answer
You need to pass the context to the render to string method, let’s say you want the participers id in the email link
views.py
JavaScript
1
20
20
1
def demande_participer(request,id):
2
participers=Mission.objects.get(id=id)
3
benParticiper=User.objects.filter(username=request.user)
4
5
# Context here
6
context = {
7
"participers": participers,
8
}
9
10
# pass context in render_to_string
11
template=render_to_string('Association/email_template.html', context=context)
12
email=EmailMessage(
13
'Veuillez confirmer votre participation a la mission proposer',#header message
14
template, # h1
15
settings.EMAIL_HOST_USER,
16
[request.user.email],
17
)
18
email.fail_silenty=False
19
email.send()
20
——–email_template.html——-
JavaScript
1
9
1
{% load crispy_forms_tags %}
2
{% block content %}
3
Confirmé la Participation
4
5
<!-- in your Html {{participers.id}} -->
6
http://127.0.0.1:8000/benevole/demande_participer/{{benParticiper.id}}/
7
8
{% endblock %}
9