mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
7 lines
237 B
PHP
7 lines
237 B
PHP
|
<?php if ($subtask['status'] == 0): ?>
|
||
|
<i class="fa fa-square-o fa-fw"></i>
|
||
|
<?php elseif ($subtask['status'] == 1): ?>
|
||
|
<i class="fa fa-gears fa-fw"></i>
|
||
|
<?php else: ?>
|
||
|
<i class="fa fa-check-square-o fa-fw"></i>
|
||
|
<?php endif ?>
|