bornhack-website/src/backoffice/templates/chain_list_backoffice.html

38 lines
1.2 KiB
HTML
Raw Normal View History

{% extends 'base.html' %}
{% load bootstrap3 %}
{% block title %}
Select Chain | {{ block.super }}
{% endblock %}
{% block content %}
<h2>Chains</h2>
<p><a href="{% url "backoffice:index" camp_slug=camp.slug %}">Back to Backoffice Index</a></p>
{% if chain_list %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Chains</h3>
</div>
<div class="panel-body">
<div class="list-group">
{% for chain in chain_list %}
<a href="{% url 'backoffice:chain_detail' camp_slug=camp.slug chain_slug=chain.slug %}" class="list-group-item">
<h4 class="list-group-item-heading">
<b>{{ chain.name }}</b> ({{ chain.credebtors.count }} credebtors)
</h4>
2019-03-30 10:01:49 +00:00
<p>{{ chain.name }} has <b>{{ chain.expenses.count }} expenses</b> for a total of <b>{{ chain.expenses_total|default:"0" }} DKK</b>, and <b>{{ chain.revenues.count }} revenues</b> for a total of <b>{{ chain.revenues_total|default:"0" }} DKK</b></p>
{% if chain.notes %}
<p><b>Notes:</b> {{ chain.notes }}</p>
{% endif %}
</a>
{% endfor %}
</div>
</div>
</div>
{% else %}
<p class="lead"><i>No Chains found.</i></p>
{% endif %}
{% endblock %}