yt-links aktualisiert
This commit is contained in:
parent
6174e9aef7
commit
912d2286d4
|
|
@ -272,8 +272,8 @@
|
|||
|
||||
<div style="" class="sidebar-heading ">
|
||||
<!--<span style="float: left"><small>poweder by </small><img src="{% static 'users/img/VVE-Logo.png' %}" width="27%" class="mb-2"></span>-->
|
||||
<a style="color: #999; text-decoration: none;" href="{% url 'datenschutzda' %}">Datenschutz</a><br />
|
||||
<a style="color: #999; text-decoration: none;" href="{% url 'impressumda' %}">Impressum</a>
|
||||
<a style="color: #999; text-decoration: none;" href="https://digitale-agentur.com/datenschutz" target="_blank">Datenschutz</a><br />
|
||||
<a style="color: #999; text-decoration: none;" href="https://digitale-agentur.com/impressum" target="_blank">Impressum</a>
|
||||
<br />
|
||||
<br />
|
||||
Version 0.9.9
|
||||
|
|
|
|||
|
|
@ -49,8 +49,8 @@
|
|||
<div class="sidebar-heading">
|
||||
<img src="{% static 'users/img/VVE-Logo.png' %}" width="30%" class="mt-2 mb-2">
|
||||
<br />
|
||||
<a style="color: #999; text-decoration: none;" href="{% url 'datenschutzda' %}">Datenschutz</a><br />
|
||||
<a style="color: #999; text-decoration: none;" href="{% url 'impressumda' %}">Impressum</a>
|
||||
<a style="color: #999; text-decoration: none;" href="https://digitale-agentur.com/datenschutz" target="_blank">Datenschutz</a><br />
|
||||
<a style="color: #999; text-decoration: none;" href="https://digitale-agentur.com/impressum" target="_blank">Impressum</a>
|
||||
</div>
|
||||
<div style="margin-top: 10px; margin-bottom: 5px;" class="sidebar-heading">
|
||||
Version 0.8.3
|
||||
|
|
|
|||
|
|
@ -27,15 +27,15 @@
|
|||
{% if field.name != 'captcha' %}
|
||||
{{field.field_name}}
|
||||
{% if field.name == 'agb' %}
|
||||
{{field}} <a style="" href="{% url 'datenschutzda' %}" target="_blank">AGB's*</a><br />
|
||||
{{field}} <a style="" href="https://digitale-agentur.com/agb" target="_blank">AGB's*</a><br />
|
||||
{% elif field.name == 'av' %}
|
||||
{{field}} <a style="" href="{% url 'impressumda' %}" target="_blank">Auftragsverarbeitung*</a>
|
||||
{{field}} <a style="" href="https://digitale-agentur.com/agb" target="_blank">Auftragsverarbeitung*</a>
|
||||
{% else %}
|
||||
{{field|as_crispy_field}}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{{form.captcha|as_crispy_field}}
|
||||
<!--form.captcha|as_crispy_field-->
|
||||
<!--<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" value="" id="isvve" onclick="javascript:changeVVE()">
|
||||
<label class="form-check-label" for="isvve">
|
||||
|
|
|
|||
|
|
@ -27,12 +27,12 @@
|
|||
<fieldset class="form-group" >
|
||||
<legend class="border-bottom mb-4" style="text-align: center;">
|
||||
<i class="fas fa-laptop"></i>
|
||||
<h3>Registrieren & Notfallhilfe bestellen</h3>
|
||||
<h3>Registrieren & Notfallhilfe bestellen </h3>
|
||||
</legend>
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
{% for field in form %}
|
||||
{% if forloop.counter|divisibleby:8 and forloop.counter != 9%}
|
||||
{% if forloop.counter|divisibleby:7 %}
|
||||
</div>
|
||||
<div class="col-6">
|
||||
{% endif %}
|
||||
|
|
@ -40,9 +40,9 @@
|
|||
{{field|as_crispy_field}}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{{form.agb}} <a style="" href="{% url 'datenschutzda' %}" target="_blank">AGB's*</a><br />
|
||||
{{form.av}} <a style="" href="{% url 'impressumda' %}" target="_blank">Auftragsverarbeitung*</a>
|
||||
form.captcha|as_crispy_field
|
||||
{{form.agb}} <a style="" href="https://digitale-agentur.com/agb" target="_blank">AGB's*</a><br />
|
||||
{{form.av}} <a style="" href="https://digitale-agentur.com/agb" target="_blank">Auftragsverarbeitung*</a>
|
||||
<!--form.captcha|as_crispy_field-->
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
<div class="row">
|
||||
<div class="col-6">
|
||||
{% for field in form %}
|
||||
{% if forloop.counter|divisibleby:6 %}
|
||||
{% if forloop.counter|divisibleby:4 %}
|
||||
</div>
|
||||
<div class="col-6">
|
||||
{% endif %}
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
{{field|as_crispy_field}}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{{form.captcha|as_crispy_field}}
|
||||
<!--form.captcha|as_crispy_field-->
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
|
|
|||
|
|
@ -177,7 +177,7 @@ class SupportForm(forms.Form):
|
|||
|
||||
class NewAgencyForm(forms.Form):
|
||||
|
||||
captcha = CaptchaField()
|
||||
#captcha = CaptchaField()
|
||||
|
||||
fields = ['first_name','last_name','mail','agencyname','vve','agb','av','captcha']
|
||||
field_order = ['first_name','last_name','mail','agencyname','vve','agb','av','captcha']
|
||||
|
|
@ -191,7 +191,7 @@ class NewAgencyForm(forms.Form):
|
|||
self.fields['vve'] = forms.CharField(required=True, label="VVE-Mitgliedsnummer")
|
||||
self.fields['agb'] = forms.BooleanField(required=True, label="AGB's")
|
||||
self.fields['av'] = forms.BooleanField(required=True, label="Auftragsverarbeitung")
|
||||
self.fields['captcha'] = CaptchaField(required=True, label="Bitte geben Sie die Symbole ein.")
|
||||
#self.fields['captcha'] = CaptchaField(required=True, label="Bitte geben Sie die Symbole ein.")
|
||||
|
||||
# Formular für Registrierung neuer Agentur UND Notfallhilfe
|
||||
class NewAgencyFormRD(forms.Form):
|
||||
|
|
@ -220,7 +220,7 @@ class NewAgencyFormRD(forms.Form):
|
|||
|
||||
class FormRD(forms.Form):
|
||||
|
||||
captcha = CaptchaField()
|
||||
#captcha = CaptchaField()
|
||||
model = RegNotfallhilfe
|
||||
|
||||
fields = ['name', 'mail', 'persnumber', 'mitgliedsnummer', 'plz', 'stadt', 'street', 'data_to_vh']
|
||||
|
|
@ -236,6 +236,6 @@ class FormRD(forms.Form):
|
|||
self.fields['street'] = forms.CharField(required=True, label="Straße und Hausnummer")
|
||||
self.fields['mail'] = forms.EmailField(required=True, label="E-Mail")
|
||||
self.fields['data_to_vh'] = forms.BooleanField(required=True, label="Hiermit erkläre ich mich der Übertragung meiner Daten von der vh Solutions UG an den VVE einverstanden.")
|
||||
self.fields['captcha'] = CaptchaField(required=True, label="Bitte geben Sie die Symbole ein.")
|
||||
#self.fields['captcha'] = CaptchaField(required=True, label="Bitte geben Sie die Symbole ein.")
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue