diff options
| author | Camil Staps | 2016-01-05 19:58:45 +0100 | 
|---|---|---|
| committer | Camil Staps | 2016-01-05 19:58:45 +0100 | 
| commit | dcf5ed8b8ac33f6f5aa77c8dd3ac13746f55a155 (patch) | |
| tree | ee3a99d32c2d342e3548d1512305f53048baac5b /resources/views | |
| parent | Removed timestamps (diff) | |
Parsing help
Diffstat (limited to 'resources/views')
| -rw-r--r-- | resources/views/trainer.php | 14 | 
1 files changed, 12 insertions, 2 deletions
| diff --git a/resources/views/trainer.php b/resources/views/trainer.php index 3794ec4..5b02626 100644 --- a/resources/views/trainer.php +++ b/resources/views/trainer.php @@ -31,7 +31,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.              </div>              <div class="row"> -                <div class="col-md-2 col-sm-4"> +                <div class="col-md-2 col-xs-4">                      <form id="hebrewparsetrainer-settings">                          <div class="form-group">                              <h3>Stems</h3> @@ -68,10 +68,20 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.                          </div>                      </form>                  </div> -                <div class="col-md-10 col-sm-8" id="trainer-input-container""> +                <div class="col-md-10 col-xs-8" id="trainer-input-container">                      <p class="bg-danger" id="trainer-404">There are no verbs matching the criteria in our database.</p>                      <p class="lead"><span class="hebrew hebrew-large" id="trainer-verb"></span><span id="trainer-answer"></span></p>                  </div> +                <div class="col-md-10 col-xs-8 text-muted"> +                    <p id="trainer-input-help"> +                        <strong>Stems</strong>: either use the full name or a significant beginning (i.e. <code>Q</code> for Qal but <code>Pi</code> for Piel rather than <code>P</code>).<br/> +                        <strong>Tenses</strong>: use the abbreviations <code>pf</code>, <code>ipf</code>, <code>coh</code>, <code>imp</code>, <code>jus</code>, <code>infcs</code>, <code>infabs</code>, <code>pta</code> and <code>ptp</code>.<br/> +                        <strong>Person</strong>: <code>1</code>, <code>2</code>, <code>3</code> or none (infinitives and participles).<br/> +                        <strong>Gender</strong>: <code>m</code>, <code>f</code> or none (infinitives).<br/> +                        <strong>Number</strong>: <code>s</code>, <code>p</code> or none (infinitives). +                    </p> +                    <button type="button" class="btn btn-default btn-xs" id="show-hide-help">Show help</button> +                </div>              </div>          </div> | 
