diff options
Diffstat (limited to 'design')
-rw-r--r-- | design/templates/admin/income_month.html | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/design/templates/admin/income_month.html b/design/templates/admin/income_month.html index e34cdbf..9f1742a 100644 --- a/design/templates/admin/income_month.html +++ b/design/templates/admin/income_month.html @@ -28,7 +28,7 @@ › <a href="{% url 'admin:app_list' app_label=opts.app_label %}">{{ app_label|capfirst|escape }}</a> › {% if has_change_permission %}<a href="{% url opts|admin_urlname:'changelist' %}"> {{ opts.verbose_name_plural|capfirst }}</a>{% else %}{{ opts.verbose_name_plural|capfirst }}{% endif %} - › {% trans 'Upload' %} + › {% trans 'Income for' %} {{date|date:"F Y"}} </div> {% endblock %} @@ -112,6 +112,38 @@ </table> </div> <h2>{% trans "Total Outstanding:" %} ${{total_outstanding.total_payment}}</h2> +<h4 style="margin-top: 3em;">Also have these stories pitched, but not accepted</h4> +<div class="results"> +<table id="result_list_2"> +<thead> +<tr> + +<th scope="col" class="sortable column-title"> + <div class="text"><a href="?o=1">Title</a></div> + <div class="clear"></div> +</th> +<th scope="col" class="sortable column-status"> + <div class="text"><a href="?o=5">Amount</a></div> + <div class="clear"></div> +</th> +<th scope="col" class="sortable column-status"> + <div class="text"><a href="?o=5">Source</a></div> + <div class="clear"></div> +</th> +</tr> +</thead> +<tbody> + +{% for gig in pitched %} + +<tr class="{% cycle 'row1' 'row2' %}"><th class="field-title">{{gig.title}}</th><td class="field-status">${{gig.payment}}</td><td class="field-payment_status">{{gig.publisher}}</td></tr> +{%endfor%} +</tbody> +</table> +</div> + +<h2>{% trans "" %} {% with total_outstanding.total_payment|add:"-2000" as underover %}{% if underover > 0 %}${{underover}} more that budget{%else%}Need to generate another ${{underover|cut:"-"}} to cover expenses{%endif%}{%endwith%}</h2> + </div> <div style="float:left; margin-left: 4em;"> |