Hello,

I was wondering if you could make a quick change to the reservation form. When creating a new reservation right above the lists of reservable items it says "Currently reserved items". Could we change it to "Currently available items". Currently reserved items confuses people.

Thanks for your help,

Comments

yosef.homsy’s picture

Issue summary: View changes

Hi,

you can do it by going to /merci/theme/theme.inc
in line 191:

$table_caption = in_array((int) $node->merci_reservation_status, array(MERCI_STATUS_CHECKED_OUT, MERCI_STATUS_CHECKED_IN)) ? t('Checked out items') : t('Currently reserved items');

And replace it with this line:

$table_caption = in_array((int) $node->merci_reservation_status, array(MERCI_STATUS_CHECKED_OUT, MERCI_STATUS_CHECKED_IN)) ? t('Checked out items') : t('Currently available items');

Note: you should do it before install the module

darrick’s picture

darrick’s picture

Category: Feature request » Support request