additional preliminary work for authorize/deny links in IF mail
This commit is contained in:
parent
c96f195b00
commit
0b21af98cc
|
@ -13,8 +13,8 @@ Der Nutzer mit dem Username {{data.username}} fragt ein {% if data.choice == 'LI
|
||||||
{% elif data.choice == 'VIS' %} Visitenkarten, Mailingliste oder E-Mail-Adresse
|
{% elif data.choice == 'VIS' %} Visitenkarten, Mailingliste oder E-Mail-Adresse
|
||||||
{% else %} ERROR UNKNOWN FORMTYPE {% endif %} an.
|
{% else %} ERROR UNKNOWN FORMTYPE {% endif %} an.
|
||||||
|
|
||||||
Genehmigen: http://127.0.0.1:8000/authorize/{{data.id}}
|
Genehmigen: http://127.0.0.1:8000/authorize/{{data.choice}}/{{data.pk}}
|
||||||
Ablehnen: http://127.0.0.1:8000/deny/{{data.id}}
|
Ablehnen: http://127.0.0.1:8000/deny/{{data.choice}}/{{data.pk}}
|
||||||
|
|
||||||
|
|
||||||
{% comment %}
|
{% comment %}
|
||||||
|
|
|
@ -9,6 +9,6 @@ urlpatterns = [
|
||||||
path('certificate', certificate, name='certificate'),
|
path('certificate', certificate, name='certificate'),
|
||||||
path('extern', ExternView.as_view(), name='extern'),
|
path('extern', ExternView.as_view(), name='extern'),
|
||||||
path('saved', done, name='done'),
|
path('saved', done, name='done'),
|
||||||
path('authorize/<int:pk>', authorize, name='authorize'),
|
path('authorize/<str:choice>/<int:pk>', authorize, name='authorize'),
|
||||||
path('deny/<int:pk>', deny, name='deny')
|
path('deny/<str:choice>/<int:pk>', deny, name='deny')
|
||||||
]
|
]
|
||||||
|
|
|
@ -107,7 +107,7 @@ class ExternView(CookieWizardView):
|
||||||
form.save()
|
form.save()
|
||||||
|
|
||||||
# add primary key to context
|
# add primary key to context
|
||||||
data['id'] = 100
|
data['pk'] = form.pk
|
||||||
|
|
||||||
# we need to send the following mails here:
|
# we need to send the following mails here:
|
||||||
context = { 'data': data }
|
context = { 'data': data }
|
||||||
|
|
Loading…
Reference in New Issue