Tom Barrett
Tom Barrett
It turns out the Korean church isn't using Jethro for Korean names. I'll work on making the pagination multi-lingual-aware. Can you point me to any standards for how to paginate...
Thanks. Yes, for Chinese, "last name" and "first name" are not good labels! In your conf.php file you can add the following to rename them: ``` define('PERSON_FIRST_NAME_LABEL', 'Given name'); define('PERSON_LAST_NAME_LABEL',...
But another question re pagination: In English we have 26 letters to divide by. In Chinese, I believe it's many many more possible characters that a name could start with!...
Hi Jeff I just ran a test and entered a person 陈 陈 into one of my systems. They came up in the first page of Persons > List All...
Plan for how to do it: * When you open the edit-attendance page, it acquires the lock for attendance * When you click some A or P buttons, these changes...
Definitely adds convenience factor, especially for the members interface. Do you think it adds increased security? Seems like if their google account gets hijacked (either stolen credentials or stolen session...
This would be quite a lot of effort to achieve, and if you had more than few weeks on the roster you'd run into the horizontal scrollbar again. Looking at...
You're not the first one to ask about flipping the roster around, however. So it's a possibility.
Sample SQL ``` INSERT IGNORE INTO person_group_membership (personid, groupid, membership_status) SELECT p.id, @groupid, pgms.id FROM _person p JOIN _person pp ON pp.familyid = p.familyid JOIN person_group_membership_status pgms ON pgms.is_default=1 WHERE...