Add ALKIS Kennzeichen field to land edit form template
The field was in the Django form but not rendered in the template. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -182,6 +182,26 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- ALKIS Kennzeichen -->
|
||||||
|
<div class="row mb-4">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="{{ form.alkis_kennzeichen.id_for_label }}" class="form-label">
|
||||||
|
{{ form.alkis_kennzeichen.label }}
|
||||||
|
</label>
|
||||||
|
{{ form.alkis_kennzeichen }}
|
||||||
|
<small class="form-text text-muted">{{ form.alkis_kennzeichen.help_text }}</small>
|
||||||
|
{% if form.alkis_kennzeichen.errors %}
|
||||||
|
<div class="invalid-feedback d-block">
|
||||||
|
{% for error in form.alkis_kennzeichen.errors %}
|
||||||
|
{{ error }}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Flächenangaben -->
|
<!-- Flächenangaben -->
|
||||||
<div class="row mb-4">
|
<div class="row mb-4">
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
|
|||||||
Reference in New Issue
Block a user