Commit e3e0f2c5 by aagusti

perbaian checkmark pada list

1 parent 9b14a9e7
......@@ -180,6 +180,7 @@ class DeTable(field.Field):
table_widget = widget.TableWidget()
self.widget = table_widget
self.server_side = server_side
self.data = data
columns = []
......
......@@ -51,7 +51,14 @@
<!-- widget-body -->
</div>
</header>
<style>
.fa-minus-square {
color: red;
}
.fa-check-square {
color: forestgreen;
}
</style>
<script type="text/javascript">
var m${tableid}ID;
var o${tableid};
......@@ -86,7 +93,8 @@
return '<i class="fas fa-check-square" aria-hidden="true">';
}
if (value === false) {
return 'Archived';
return '<i class="fas fa-minus-square" aria-hidden="true">';
//'Archived';
}
return value;
}
......
......@@ -11,7 +11,7 @@ with open(os.path.join(here, 'CHANGES.txt')) as f:
line = CHANGES.splitlines()[0]
version = line.split()[0]
requires = [
'sqlalchemy==1.4.50',
'sqlalchemy',
'wheel',
'colander==1.8.3',
'pyramid',
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!