aboutsummaryrefslogtreecommitdiff
path: root/resources/views/trainer.blade.php
diff options
context:
space:
mode:
authorCamil Staps2016-09-06 21:22:35 +0200
committerCamil Staps2016-09-06 21:22:35 +0200
commit183478a12b7eb24b6433f4e6d5f3205198a095d9 (patch)
tree0fac499f468cbab330004df43e6485562360dc6d /resources/views/trainer.blade.php
parentOnly show roots with active verbs on trainer page (diff)
Several minor interface improvements
Diffstat (limited to 'resources/views/trainer.blade.php')
-rw-r--r--resources/views/trainer.blade.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/views/trainer.blade.php b/resources/views/trainer.blade.php
index c4452f6..02d9964 100644
--- a/resources/views/trainer.blade.php
+++ b/resources/views/trainer.blade.php
@@ -28,10 +28,10 @@ use HebrewParseTrainer\Tense;
<div class="form-group">
<h3>Roots</h3>
- <select name="root" class="reload-verb form-control" multiple="multiple">
+ <select name="root" class="reload-verb form-control hebrew ltr" multiple="multiple">
@foreach (Root::orderBy('root_kind_id')->get() as $root)
@if ($root->verbs()->where('active', 1)->count() > 0)
- <option class="hebrew" value="{{{ $root->root }}}" selected="selected">{{{ $root->root }}} ({{{ $root->kind->name }}})</option>
+ <option value="{{{ $root->root }}}" selected="selected">{{{ $root->root }}} ({{{ $root->kind->name }}})</option>
@endif
@endforeach
</select>