Remove unused raid_list.html template.

This commit is contained in:
Casper V. Kristensen 2020-01-12 03:38:56 +01:00
parent 620796448d
commit 14016996aa
Signed by: caspervk
GPG key ID: 289CA03790535054

View file

@ -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 %}