diff options
author | Camil Staps | 2016-09-06 00:44:27 +0200 |
---|---|---|
committer | Camil Staps | 2016-09-06 00:44:27 +0200 |
commit | 276ac8d8b32c1242863f597bcee411995cf36a05 (patch) | |
tree | 16f01239e15f05d1fa7540b1f6978b96fb7646e1 /resources/views/suggestions.blade.php | |
parent | Several minor fixes (diff) |
Top users, more condense contribution page
Diffstat (limited to 'resources/views/suggestions.blade.php')
-rw-r--r-- | resources/views/suggestions.blade.php | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/resources/views/suggestions.blade.php b/resources/views/suggestions.blade.php index e9b8efb..2e95eff 100644 --- a/resources/views/suggestions.blade.php +++ b/resources/views/suggestions.blade.php @@ -7,12 +7,15 @@ use HebrewParseTrainer\Verb; </div> <div class="panel-body"> <table class="table table-hover table-condensed suggestions"> - <tr> - <th>Verb</th> - <th>Root</th> - <th>Parsing</th> - <th colspan="3">Votes</th> - </tr> + <thead> + <tr> + <th>Verb</th> + <th>Root</th> + <th>Parsing</th> + <th colspan="3">Votes</th> + </tr> + </thead> + <tbody> @forelse(Verb::where('active', 0)->orderBy('verb')->get() as $verb) <tr> <td class="large">{{ $verb->verb }}</td> @@ -25,6 +28,7 @@ use HebrewParseTrainer\Verb; @empty <tr><td colspan="4">There are no active suggestions. Why not add a verb yourself?</td></tr> @endforelse + </tbody> </table> </div> </div> |