feat: allow to disable subscriptions (#144)

This commit is contained in:
Miguel Ribeiro
2024-02-23 18:08:20 +01:00
committed by GitHub
parent 91e53a48e4
commit 50056d9f03
15 changed files with 24 additions and 42 deletions
+5 -5
View File
@@ -195,11 +195,6 @@
</div>
</div>
<div class="form-group-inline">
<input type="checkbox" id="inactive" name="inactive">
<label for="inactive"><?= translate('inactive', $i18n) ?></label>
</div>
<div class="form-group">
<label for="payment_method"><?= translate('payment_method', $i18n) ?></label>
<select id="payment_method" name="payment_method_id">
@@ -252,6 +247,11 @@
<input type="text" id="notes" name="notes" placeholder="<?= translate('notes', $i18n) ?>">
</div>
<div class="form-group-inline">
<input type="checkbox" id="inactive" name="inactive">
<label for="inactive"><?= translate('inactive', $i18n) ?></label>
</div>
<?php
if ($notificationsEnabled) {
?>