Compare commits

...

2 Commits

Author SHA1 Message Date
ea579614b3
Merge pull request 'fix margin of delete button on transaction_edit' (!48) from bugfix/layout-fix into master
All checks were successful
rvr-nextgen/pipeline/head This commit looks good
Reviewed-on: #48
2023-05-06 13:21:33 +02:00
d8786e74d5
fix margin of delete button on transaction_edit
All checks were successful
rvr-nextgen/pipeline/pr-master This commit looks good
2023-05-06 13:13:15 +02:00

View File

@ -48,7 +48,7 @@
<div class="right marginTop" style="font-size: 0;">
<button type="submit" name="submit_button"><?= isset($transaction) ? 'Save' : 'Create' ?></button>
<?php if (isset($transaction)): ?>
<button type="submit" form="deleteTransaction" name="submit_button" data-confirmation="Are you sure you want to delete this transaction?" class="red marginRight">Delete</button>
<button type="submit" form="deleteTransaction" name="submit_button" data-confirmation="Are you sure you want to delete this transaction?" class="red marginLeft">Delete</button>
<?php endif; ?>
</div>
</form>