summaryrefslogtreecommitdiff
path: root/design/templates/admin/income
diff options
context:
space:
mode:
authorlxf <sng@luxagraf.net>2021-11-06 09:42:47 -0400
committerlxf <sng@luxagraf.net>2021-11-06 09:42:47 -0400
commitd9f51299809bfb6b3ac589b7c42016d0ef240299 (patch)
treeaa5f945e82fdbf1b66aca82fe5122f6ff5a12eb9 /design/templates/admin/income
parentdde9914dbbc6cda18ba59024065727c8dc6bcdf4 (diff)
moved templates to top level directory
Diffstat (limited to 'design/templates/admin/income')
-rw-r--r--design/templates/admin/income/monthly.html57
1 files changed, 0 insertions, 57 deletions
diff --git a/design/templates/admin/income/monthly.html b/design/templates/admin/income/monthly.html
deleted file mode 100644
index 920d074..0000000
--- a/design/templates/admin/income/monthly.html
+++ /dev/null
@@ -1,57 +0,0 @@
-{% extends "admin/base_site.html" %}
-{% load i18n admin_urls admin_static %}
-
-{% block breadcrumbs %}
- <div class="breadcrumbs">
- <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
- &rsaquo; <a href="/admin/income/">Income</a>
- &rsaquo; <a href="/admin/income/invoice/">Invoices</a>
- &rsaquo; <a href="/admin/income/invoice/{{object.id}}/change/">{{object.title}}</a>
- </div>
-{% endblock %}
-{% block content %}
-
-<h1>{% trans "EDR Invoice for the month of" %} {{object.title}}</h1>
-
-
-<div style="float: left; width: 45%">
-<div class="results">
-<table id="result_list">
-<thead>
-<tr>
-
-<th scope="col" class="sortable column-title">
- <div class="text"><a href="?o=1">Date</a></div>
- <div class="clear"></div>
-</th>
-<th scope="col" class="sortable column-status">
- <div class="text"><a href="?o=5">Time Start</a></div>
- <div class="clear"></div>
-</th>
-<th scope="col" class="sortable column-status">
- <div class="text"><a href="?o=5">Time Finish</a></div>
- <div class="clear"></div>
-</th>
-<th scope="col" class="sortable column-status">
- <div class="text"><a href="?o=5">Total</a></div>
- <div class="clear"></div>
-</th>
-<th scope="col" class="sortable column-status">
- <div class="text"><a href="?o=5">Work Done</a></div>
- <div class="clear"></div>
-</th>
-</tr>
-</thead>
-<tbody>
-
- {% for object in object_list %}
- <tr class="{% cycle 'row1' 'row2' %}"><th class="field-title"><a href="/admin/income/invoiceitem/{{object.id}}/change/">{{object.time_start|date:"M d"}}</a></th><td class="field-status">{{object.time_start|date:"h:i"}}</td><td class="field-payment_status">{{object.time_end|date:"h:i"}}</td><td class="field-pub_date nowrap">{{object.total}}-{{object.rounded_total}}</td><td class="field-payment_status">{{object.work_done}}</td></tr>
-{% endfor %}
-<tr class="row2"><th class="field-title">&nbsp;</th><td class="field-status"></td><td class="field-payment_status"></td><td class="field-pub_date nowrap"></td></tr> <tr class="row2"><th class="field-title">Total Hours:</th><td class="field-status">{{total_hours}}</td><td class="field-payment_status"></td><td class="field-pub_date nowrap"></td></tr>
-<tr class="row2"><th class="field-title">Total Billed:</th><td class="field-status">${{total_billed}}</td><td class="field-payment_status"></td><td class="field-pub_date nowrap"></td></tr>
-</tbody>
-</table>
-</div>
-<p style="margin: 2rem 0; background: #79aec8; width: 120px; padding: 1rem;"><a style="color:white !important;" href="{% url 'download-invoice' object.slug %}">Generate Invoice</a></p>
-
-{% endblock %}