Overview
Comment:Don't hide form when there's an error
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: e2f5f7cea647545e9fa3698eb43f75f47a8fc327
User & Date: bohwaz on 2020-11-27 13:56:06
Other Links: branch diff | manifest | tags
Context
2020-11-27
15:15
Fix import check-in: 4fe6d3b708 user: bohwaz tags: dev, 1.0.0-rc2
13:56
Don't hide form when there's an error check-in: e2f5f7cea6 user: bohwaz tags: dev
13:54
Fix selector for radio-button current state check-in: 7126f88b4a user: bohwaz tags: dev
Changes

Modified src/templates/acc/transactions/new.tpl from [68bb283d75] to [a1c3d7a7ba].

99
100
101
102
103
104
105
106

107
108
109
110
99
100
101
102
103
104
105

106
107
108
109
110







-
+




	</p>

</form>

<script type="text/javascript" defer="defer" async="async">
let is_new = {if $payoff_for}false{else}true{/if};
{literal}
g.script('scripts/accounting.js', () => { initTransactionForm(is_new); });
g.script('scripts/accounting.js', () => { initTransactionForm(is_new && !$('.block').length); });
</script>
{/literal}

{include file="admin/_foot.tpl"}