View | Details | Raw Unified | Return to bug 15961
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt (-4 / +3 lines)
Lines 129-135 Link Here
129
        <h3>Cannot delete currency <span class="ex">'[% currency.currency %]'</span></h3>
129
        <h3>Cannot delete currency <span class="ex">'[% currency.currency %]'</span></h3>
130
        <p>This currency is used by [% nb_of_orders %] orders. Deletion not possible</p>
130
        <p>This currency is used by [% nb_of_orders %] orders. Deletion not possible</p>
131
        <form action="/cgi-bin/koha/admin/currency.pl" method="post">
131
        <form action="/cgi-bin/koha/admin/currency.pl" method="post">
132
            <input type="submit" value="OK" class="approve" />
132
            <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> OK</button>
133
        </form>
133
        </form>
134
    </div>
134
    </div>
135
    [% ELSE %]
135
    [% ELSE %]
Lines 146-155 Link Here
146
        <form action="/cgi-bin/koha/admin/currency.pl" method="post">
146
        <form action="/cgi-bin/koha/admin/currency.pl" method="post">
147
            <input type="hidden" name="op" value="delete_confirmed" />
147
            <input type="hidden" name="op" value="delete_confirmed" />
148
            <input type="hidden" name="currency_code" value="[% currency.currency_code %]" />
148
            <input type="hidden" name="currency_code" value="[% currency.currency_code %]" />
149
            <input type="submit" class="approve" value="Delete this currency" />
149
            <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, delete this currency</button>
150
        </form>
150
        </form>
151
        <form action="/cgi-bin/koha/admin/currency.pl" method="post">
151
        <form action="/cgi-bin/koha/admin/currency.pl" method="post">
152
            <input type="submit" class="deny" value="No, do not delete" />
152
            <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not delete</button>
153
        </form>
153
        </form>
154
    </div>
154
    </div>
155
    [% END %]
155
    [% END %]
156
- 

Return to bug 15961