diff options
author | BonfaceKilz | 2022-05-06 11:01:06 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-05-06 12:43:34 +0300 |
commit | 465106dfd64eeb2e57574f480c997304a40553da (patch) | |
tree | f291e2e692faa441d04fc2672c40abea680a3452 /wqflask | |
parent | df0c81a27b36fbd3100c4b7ce890f52b6f5fdfbb (diff) | |
download | genenetwork2-465106dfd64eeb2e57574f480c997304a40553da.tar.gz |
Fix typos; "Pre" and "Post", as prefixes, aren't standalone words
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/edit_phenotype.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/wqflask/wqflask/templates/edit_phenotype.html b/wqflask/wqflask/templates/edit_phenotype.html index e535b9ec..610a6f60 100644 --- a/wqflask/wqflask/templates/edit_phenotype.html +++ b/wqflask/wqflask/templates/edit_phenotype.html @@ -77,7 +77,7 @@ <label for="pubmed-id" class="col-sm-3 col-lg-2 control-label text-left">PubMed ID</label> <!-- Do not enter PubMed_ID if this trait has not been Published. If the PubMed_ID you entered is alreday stored in our - database, all the following fields except Post Publication + database, all the following fields except Postpublication Description will be ignored. Do not enter any non-digit character in this field. --> <div class="col-sm-7 col-lg-8"> @@ -86,18 +86,18 @@ </div> </div> <div class="form-group"> - <label for="pre-pub-desc" class="col-sm-3 col-lg-2 control-label text-left">Pre Publication Description</label> + <label for="pre-pub-desc" class="col-sm-3 col-lg-2 control-label text-left">Prepublication Description</label> <div class="col-sm-7 col-lg-8"> <textarea name="pre-pub-desc" class="form-control" rows="4">{{ phenotype.pre_pub_description |default('', true) }}</textarea> <input name="old_pre_pub_description" class="changed" type="hidden" value="{{ phenotype.pre_pub_description |default('', true) }}"/> </div> - <!-- If the PubMed ID is entered, the Post Publication Description + <!-- If the PubMed ID is entered, the Postpublication Description will be shown to all users. If there is no PubMed ID, and the - Pre Publication Description is entered, only you and - authorized users can see the Post Publication Description --> + Prepublication Description is entered, only you and + authorized users can see the Postpublication Description --> </div> <div class="form-group"> - <label for="post-pub-desc" class="col-sm-3 col-lg-2 control-label text-left">Post Publication Description</label> + <label for="post-pub-desc" class="col-sm-3 col-lg-2 control-label text-left">Postpublication Description</label> <div class="col-sm-7 col-lg-8"> <textarea name="post-pub-desc" class="form-control" rows="4">{{ phenotype.post_pub_description |default('', true) }}</textarea> <input name="old_post_pub_description" class="changed" type="hidden" value="{{ phenotype.post_pub_description |default('', true) }}"/> @@ -119,7 +119,7 @@ </div> <div class="form-group"> <label for="pre-pub-abbrev" class="col-sm-3 col-lg-2 control-label text-left"> - Pre Publication Abbreviation + Prepublication Abbreviation </label> <div class="col-sm-7 col-lg-8"> <textarea name="pre-pub-abbrev" class="form-control" rows="1">{{ phenotype.pre_pub_abbreviation |default('', true) }}</textarea> @@ -128,7 +128,7 @@ </div> <div class="form-group"> <label for="post-pub-abbrev" class="col-sm-3 col-lg-2 control-label text-left"> - Post Publication Abbreviation + Postpublication Abbreviation </label> <div class="col-sm-7 col-lg-8"> <textarea name="post-pub-abbrev" class="form-control" rows="1">{{ phenotype.post_pub_abbreviation |default('', true) }}</textarea> |