<%inherit file="/base/index.html" /> <%namespace file="/base/markup.html" name="markup" import="*"/> <%def name="heading()">

Settings for ${c.researcher.firstName} ${c.researcher.lastName}

This page lists the settings specific to user ${c.researcher.firstName} \ ${c.researcher.lastName}.

% if ('user_username' in session and session['user_username'] == \ c.researcher.username) or ('user_role' in session and session['user_role'] \ == 'administrator'): edit % endif
Input Orthography

The orthography that ${c.researcher.firstName} ${c.researcher.lastName} will use to enter and search for orthographic object language data. Note: if unspecified, system's default input orthography will be used.

% if 'inputOrthography' in c.researcherSettings and \ c.researcherSettings['inputOrthography'] in app_globals.OLOrthographies: ${app_globals.OLOrthographies[c.researcherSettings['inputOrthography']][0]} % else: unspecified (system default is ${app_globals.defaultInputOrthography[0]}) % endif
Output Orthography

The orthography that will be used to display orthographic object language data to ${c.researcher.firstName} ${c.researcher.lastName}. Note: if unspecified, the system's default output orthography will be used.

% if 'outputOrthography' in c.researcherSettings and \ c.researcherSettings['outputOrthography'] in app_globals.OLOrthographies: ${app_globals.OLOrthographies[c.researcherSettings['outputOrthography']][0]} % else: unspecified (system default is ${app_globals.defaultOutputOrthography[0]}) % endif
Remember Metadata from Previous Form

If set to True, then when adding a new Form default values for category, speaker, elicitor, verifier, source and date elicited will be taken from the Form previously entered by ${c.researcher.firstName} ${c.researcher.lastName}.

% if 'defaultMetadataFromPreviousForm' in c.researcherSettings: ${c.researcherSettings['defaultMetadataFromPreviousForm']} % else: False (default) % endif
Default Form View

If set to 'IGT', Form results will be displayed in interlinear gloss format. If set to 'tabular', Form results will be displayed as a table.

% if 'defaultFormView' in c.researcherSettings: ${c.researcherSettings['defaultFormView']} % else: IGT (default) % endif
Guess Morphological Analysis

If set to True, then when entering data the system will try to guess the morpheme break and morpheme gloss fields in real time. At present, this is simple word lookup. In the future, a system-configurable FST morphological analyzer will be implemented.

% if 'guessMorphology' in c.researcherSettings: ${c.researcherSettings['guessMorphology']} % else: False (default) % endif
Date Format

The date format you wish to use when entering dates. Choose one of 'MM/DD/YYYY' or 'DD/MM/YYYY'.

% if 'dateFormat' in c.researcherSettings: ${c.researcherSettings['dateFormat']} % else: 'MM/DD/YYYY' (default) % endif
% if ('user_username' in session and \ session['user_username'] == c.researcher.username) or \ ('user_role' in session and session['user_role'] == 'administrator'): edit % endif