blob: 42756f59d6e737e1aec0146f19782192ca0469aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "cavebase.html" %}
{% load wiki_markup %}
{% block title %}Cave Index{% endblock %}
{% block content %}
123 testing 123 testing
{{ somenonsense }}
{{ notablecaves }}
{% for cave in notablecaves %}
<li> Also update <a href="{{ cave.fixedfield }}">wrap {{ cave.fixedfield }}wrap </a> </li>
{% endfor %}
{% endblock %}
|