Remove unused raid_list.html template.
This commit is contained in:
parent
620796448d
commit
14016996aa
|
@ -1,14 +0,0 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}Raids{% endblock %}
|
||||
|
||||
|
||||
{% block content %}
|
||||
<h2>Raids</h2>
|
||||
{% if perms.raids.add_raid %}<a class="btn btn-success" role="button" href="{% url 'raid_create' %}">Add New</a>{% endif %}
|
||||
<ul>
|
||||
{% for raid in raid_list %}
|
||||
<li><a href="{% url 'raid_detail' raid.id %}">{{ raid.title }}</a> ({{ raid.date }})</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock content %}
|
Loading…
Reference in a new issue