Commit 8089392c authored by Fabian Franz's avatar Fabian Franz Committed by Franco Fichtner

fix for #504

(cherry picked from commit 803d0a65)
parent 1489af4e
...@@ -438,6 +438,11 @@ $( document ).ready(function() { ...@@ -438,6 +438,11 @@ $( document ).ready(function() {
<i class="fa fa-arrows-h" data-toggle="tooltip" data-placement="left" title="<?=gettext("any");?>"></i> <i class="fa fa-arrows-h" data-toggle="tooltip" data-placement="left" title="<?=gettext("any");?>"></i>
<?php <?php
endif;?> endif;?>
<?php
if(!empty($filterent['quick'])): ?>
<i class="fa fa-flash<?= ($filterent['quick'] == 'yes') ? '' : ' text-muted' ?>" data-toggle="tooltip" data-placement="left" title="<?= ($filterent['quick'] == 'yes') ? gettext('quick') : gettext('not quick') ?>"></i>
<?php endif; ?>
<?php <?php
if (isset($filterent['log'])):?> if (isset($filterent['log'])):?>
<span class="glyphicon glyphicon-info-sign <?=!empty($filterent['disabled']) ? "text-muted" :""?>"></span> <span class="glyphicon glyphicon-info-sign <?=!empty($filterent['disabled']) ? "text-muted" :""?>"></span>
...@@ -599,6 +604,8 @@ $( document ).ready(function() { ...@@ -599,6 +604,8 @@ $( document ).ready(function() {
<td width="100"><?=gettext("log");?></td> <td width="100"><?=gettext("log");?></td>
<td width="16"><span class="fa fa-long-arrow-right"></span></td> <td width="16"><span class="fa fa-long-arrow-right"></span></td>
<td width="100"><?=gettext("in");?></td> <td width="100"><?=gettext("in");?></td>
<td width="16"><span class="fa fa-flash"></span></td>
<td width="100"><?=gettext("quick");?></td>
</tr> </tr>
<tr> <tr>
<td><span class="glyphicon glyphicon-play text-muted"></span></td> <td><span class="glyphicon glyphicon-play text-muted"></span></td>
...@@ -617,6 +624,8 @@ $( document ).ready(function() { ...@@ -617,6 +624,8 @@ $( document ).ready(function() {
<td class="nowrap"><?=gettext("log (disabled)");?></td> <td class="nowrap"><?=gettext("log (disabled)");?></td>
<td width="16"><span class="fa fa-long-arrow-left"></span></td> <td width="16"><span class="fa fa-long-arrow-left"></span></td>
<td width="100"><?=gettext("out");?></td> <td width="100"><?=gettext("out");?></td>
<td width="16"></td>
<td width="100"></td>
</tr> </tr>
</table> </table>
</td> </td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment