Compare commits

...

3 Commits

2 changed files with 4 additions and 1 deletions

View File

@ -285,11 +285,14 @@ import { is_promise } from "svelte/internal";
name="paid" name="paid"
type="checkbox" type="checkbox"
class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded" > class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded" >
<span class="align-text-bottom">
{#if is_paid} {#if is_paid}
{$_('paid')} {$_('paid')}
{:else} {:else}
{$_('open')} {$_('open')}
{/if} {/if}
</span>
</p> </p>
</div> </div>
{/if} {/if}

View File

@ -203,7 +203,7 @@
class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium"> class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<button <button
on:click={() => {open_payment_modal(donation);}} on:click={() => {open_payment_modal(donation);}}
class="text-green-600 hover:text-green-900 mr-4">{$_('enter-payment')}</button> class="text-[#025a21] hover:text-green-900 mr-4">{$_('enter-payment')}</button>
<a <a
href="./{donation.id}" href="./{donation.id}"
class="text-indigo-600 hover:text-indigo-900">{$_('details')}</a> class="text-indigo-600 hover:text-indigo-900">{$_('details')}</a>