mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-24 04:33:43 +00:00
23 lines
911 B
HTML
23 lines
911 B
HTML
{% extends 'django_ledger/layouts/content_layout_1.html' %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% load django_ledger %}
|
|
{% block view_content %}
|
|
<div class="card">
|
|
<div class="card-content">
|
|
<div class="level">
|
|
<div class="level-left">
|
|
<div class="level-item">
|
|
<h1 class="is-size-1 has-text-weight-thin">{% trans 'The Things I Pay For' %}</h1>
|
|
</div>
|
|
<div class="level-item">
|
|
<a href="{% url 'django_ledger:expense-create' entity_slug=view.kwargs.entity_slug %}">
|
|
<span class="icon is-large has-text-success">{% icon 'carbon:add-alt' 60 %}</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% expense_item_table expense_list %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|