forked from MarseyWorld/MarseyWorld
allow "I" as the first pronoun
parent
a7c5ad6045
commit
7243ed408f
|
@ -102,7 +102,7 @@ search_token_regex = re.compile('"([^"]*)"|(\S+)', flags=re.A)
|
|||
|
||||
git_regex = re.compile("ref: (refs/.+)", flags=re.A)
|
||||
|
||||
pronouns_regex = re.compile("[a-z]{2,5}/[a-z]{2,5}", flags=re.A)
|
||||
pronouns_regex = re.compile("([a-z]{2,5}|i)/[a-z]{2,5}", flags=re.A)
|
||||
|
||||
def sub_matcher(match, upper=False):
|
||||
if match.group(0).startswith('<'):
|
||||
|
|
|
@ -466,7 +466,7 @@
|
|||
<div class="w-lg-100">
|
||||
<form id="profile-settings" action="/settings/pronouns_change" method="post">
|
||||
<input type="hidden" name="formkey" value="{{v.formkey}}">
|
||||
<input minlength=3 maxlength=11 pattern="[a-zA-Z]{2,5}/[a-zA-Z]{2,5}" autocomplete="off" id="pronounbody" type="text" name="pronouns" class="form-control" placeholder='Enter pronouns here' value="{% if v.pronouns %}{{v.pronouns}}{% endif %}">
|
||||
<input minlength=3 maxlength=11 pattern="([a-zA-Z]{2,5}|i|I)/[a-zA-Z]{2,5}" autocomplete="off" id="pronounbody" type="text" name="pronouns" class="form-control" placeholder='Enter pronouns here' value="{% if v.pronouns %}{{v.pronouns}}{% endif %}">
|
||||
<div class="d-flex mt-2">
|
||||
<small>{2-5 characters} / {2-5 characters}</small>
|
||||
<input autocomplete="off" class="btn btn-primary ml-auto" id="pronounsSave" type="submit" onclick="disable(this)" value="Change Pronouns">
|
||||
|
|
Loading…
Reference in New Issue