mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-23 07:41:56 +00:00
d639a53f20
wiki_to_html should be used when the field will include paragraphs wiki_to_html_short should be used when the field will not include paragraphs
10 lines
280 B
HTML
10 lines
280 B
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
|
|
{% block title %}Cave Index{% endblock %}
|
|
|
|
{% block content %}
|
|
{% for cave in caves %}
|
|
<p>{{ cave }} <a href="./{{ cave.kataster_number }}/">{{ cave.official_name|wiki_to_html_short }}</a> </p>
|
|
{% endfor %}
|
|
{% endblock %} |