Skip to content

Commit

Permalink
spatial coverage detail view
Browse files Browse the repository at this point in the history
  • Loading branch information
csae8092 committed Mar 23, 2022
1 parent 477ea70 commit edeec32
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion archiv/templates/archiv/spatial_coverage_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,15 @@ <h2>
Stelle: <a href="{{ x.get_absolute_url }}">{{ x }}</a>
<ul>
<li>from-to: {{ x.start_date }} - {{ x.end_date }}</li>
<li>Place: <a href="{{ x.place.get_absolute_url }}">{{ x.place }}</a></li>
<li>Places:
<ul>
{% for pl in x.ort.all %}
<li>
<a href="{{ pl.get_absolute_url }}">{{ pl }}</a>
</li>
{% endfor %}
</ul>
</li>
<li>
Text: <a href="{{ x.text.get_absolute_url }}">{{ x.text }}</a>
<ul>
Expand Down

0 comments on commit edeec32

Please sign in to comment.