Adds some more words to credit note details.
This commit is contained in:
parent
c1c9d1dfa4
commit
029fdadcf7
1 changed files with 4 additions and 1 deletions
|
@ -8,7 +8,8 @@
|
||||||
{% with note_user=credit_note.invoice.user %}
|
{% with note_user=credit_note.invoice.user %}
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>Number:</strong> {{ credit_note.id }}
|
<li><strong>Number:</strong> {{ credit_note.id }}
|
||||||
<li><strong>Attention:</strong> {{ credit_note.invoice.recipient }}</li>
|
<li><strong>Attention:</strong> {{ credit_note.invoice.recipient }}</li>
|
||||||
|
<li><strong>User:</strong> {{ credit_note.invoice.user.email }} ({{ credit_note.invoice.user.id}})</li>
|
||||||
<li><strong>Value:</strong> {{ credit_note.value }}</li>
|
<li><strong>Value:</strong> {{ credit_note.value }}</li>
|
||||||
<li><strong>Status:</strong> {{ credit_note.status }}</li>
|
<li><strong>Status:</strong> {{ credit_note.status }}</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -22,6 +23,8 @@
|
||||||
<h3>Apply to invoice</h3>
|
<h3>Apply to invoice</h3>
|
||||||
<p>You can apply this credit note to an unpaid invoice.</p>
|
<p>You can apply this credit note to an unpaid invoice.</p>
|
||||||
|
|
||||||
|
<p><strong>This credit note belongs to:</strong> {{ credit_note.invoice.user.email }} ({{ credit_note.invoice.user.id}}). You can apply this credit note to any user's invoice.</p>
|
||||||
|
|
||||||
{{ apply_form|bootstrap }}
|
{{ apply_form|bootstrap }}
|
||||||
<div class="form-actions">
|
<div class="form-actions">
|
||||||
<input class="btn btn-primary" type="submit" value="Apply to invoice" />
|
<input class="btn btn-primary" type="submit" value="Apply to invoice" />
|
||||||
|
|
Loading…
Reference in a new issue