This commit is contained in:
James Cole
2018-01-22 18:16:50 +01:00
parent f2d8e13576
commit bc4d801c12
8 changed files with 14 additions and 14 deletions

View File

@@ -78,7 +78,7 @@
</select>
{% else %}
{# SOURCE ACCOUNT NAME FOR DEPOSIT #}
<input class="form-control input-sm" placeholder="{{ journal.source_account_name }}"
<input class="form-control input-sm" placeholder="{{ journal.source_account_name }}" autocomplete="off"
name="source_account_name[{{ journal.id }}]" type="text" value="{{ journal.source_account_name }}">
{% endif %}
</td>
@@ -94,13 +94,13 @@
{% else %}
{# DESTINATION ACCOUNT NAME FOR EXPENSE #}
<input class="form-control input-sm" placeholder="{{ journal.destination_account_name }}"
name="destination_account_name[{{ journal.id }}]" type="text"
name="destination_account_name[{{ journal.id }}]" type="text" autocomplete="off"
value="{{ journal.destination_account_name }}">
{% endif %}
</td>
{# category #}
<td>
<input class="form-control input-sm" placeholder="{{ journal.categories[0].name }}"
<input class="form-control input-sm" placeholder="{{ journal.categories[0].name }}" autocomplete="off"
name="category[{{ journal.id }}]" type="text" value="{{ journal.categories[0].name }}">
</td>
{# budget #}