Add ALKIS Flurstückskennzeichen field for direct cadastre links
When an ALKIS identifier is set on a Land record, the button links to ogc-api.nrw.de detail view instead of the imprecise TIM-Online search. Falls back to TIM-Online when no ALKIS number is present. Closes STI-57 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -25,10 +25,17 @@
|
||||
</div>
|
||||
<div class="col-md-4 text-end">
|
||||
<div class="btn-group" role="group">
|
||||
{% if land.alkis_kennzeichen %}
|
||||
<a href="https://ogc-api.nrw.de/lika/v1/collections/flurstueck/Items/{{ land.alkis_kennzeichen|urlencode }}"
|
||||
class="btn btn-outline-success" title="Flurstück im Kataster anzeigen" target="_blank" rel="noopener">
|
||||
<i class="fas fa-map-marked-alt me-2"></i>Kataster
|
||||
</a>
|
||||
{% else %}
|
||||
<a href="https://www.tim-online.nrw.de/tim-online2/?WFS_gemarkung={{ land.gemarkung|urlencode }}&WFS_flur={{ land.flur|urlencode }}&WFS_flurstueck={{ land.flurstueck|urlencode }}"
|
||||
class="btn btn-outline-success" title="TIM-Online NRW öffnen" target="_blank" rel="noopener">
|
||||
<i class="fas fa-map-marked-alt me-2"></i>TIM-Online
|
||||
</a>
|
||||
{% endif %}
|
||||
<a href="{% url 'stiftung:land_update' land.pk %}" class="btn btn-warning">
|
||||
<i class="fas fa-edit me-2"></i>Bearbeiten
|
||||
</a>
|
||||
|
||||
@@ -249,10 +249,17 @@
|
||||
class="btn btn-sm btn-outline-primary" title="Anzeigen">
|
||||
<i class="fas fa-eye"></i>
|
||||
</a>
|
||||
{% if land.alkis_kennzeichen %}
|
||||
<a href="https://ogc-api.nrw.de/lika/v1/collections/flurstueck/Items/{{ land.alkis_kennzeichen|urlencode }}"
|
||||
class="btn btn-sm btn-outline-success" title="Kataster" target="_blank" rel="noopener">
|
||||
<i class="fas fa-map-marked-alt"></i>
|
||||
</a>
|
||||
{% else %}
|
||||
<a href="https://www.tim-online.nrw.de/tim-online2/?WFS_gemarkung={{ land.gemarkung|urlencode }}&WFS_flur={{ land.flur|urlencode }}&WFS_flurstueck={{ land.flurstueck|urlencode }}"
|
||||
class="btn btn-sm btn-outline-success" title="TIM-Online NRW" target="_blank" rel="noopener">
|
||||
<i class="fas fa-map-marked-alt"></i>
|
||||
</a>
|
||||
{% endif %}
|
||||
<a href="{% url 'stiftung:land_update' land.pk %}"
|
||||
class="btn btn-sm btn-outline-warning" title="Bearbeiten">
|
||||
<i class="fas fa-edit"></i>
|
||||
|
||||
Reference in New Issue
Block a user