admin管理员组文章数量:1344238
I have a Django/MySQl/bootsrap website where my view displays some boolean column values. Is there a way to display check mark and cross mark instead of showing TRUE or False? It can either be a .svg file or HTML code for check mark and cross. Any brilliant mind around has done the same?
Here is my code:
<tr class="table_content">
<td>{{ sku.sku }}</td>
<td>{{ sku.gsa }}</td>
<td>{{ sku.service_category }}</td>
<td>{{ sku.product_category }}</td>
<td>{{ sku.product_description }}</td>
<td>{{ sku.unit }}</td>
<td>${{ sku.msrp }}</td>
<td>${{ sku.channel_price }}</td>
<td>{{ sku.volume_pricing }}</td>
<td>{{ skuments_sku_description }}</td>
<td>{{ sku.new_sku }}</td>
<td>{{ sku.price_requested }}</td>
<td>{{ sku.to_be_retired }}</td>
</tr>
The last 3 return boolean values. I am trying to display either a .svg file of checkmark and cross or simply html code for checkmark and cross.
I have a Django/MySQl/bootsrap website where my view displays some boolean column values. Is there a way to display check mark and cross mark instead of showing TRUE or False? It can either be a .svg file or HTML code for check mark and cross. Any brilliant mind around has done the same?
Here is my code:
<tr class="table_content">
<td>{{ sku.sku }}</td>
<td>{{ sku.gsa }}</td>
<td>{{ sku.service_category }}</td>
<td>{{ sku.product_category }}</td>
<td>{{ sku.product_description }}</td>
<td>{{ sku.unit }}</td>
<td>${{ sku.msrp }}</td>
<td>${{ sku.channel_price }}</td>
<td>{{ sku.volume_pricing }}</td>
<td>{{ sku.ments_sku_description }}</td>
<td>{{ sku.new_sku }}</td>
<td>{{ sku.price_requested }}</td>
<td>{{ sku.to_be_retired }}</td>
</tr>
The last 3 return boolean values. I am trying to display either a .svg file of checkmark and cross or simply html code for checkmark and cross.
Share Improve this question edited Mar 20, 2017 at 0:50 nomad asked Mar 20, 2017 at 0:33 nomadnomad 9832 gold badges9 silver badges23 bronze badges3 Answers
Reset to default 6On the html you can use the tick symbol in this unicode format ✔
result ✔
And also you can use the times symbol in this html format ×
result ×
Reference :
Tick symbol in HTML/XHTML
What is the proper HTML entity for the "x" in a dimension?
EDIT
Option 1 - works but it is not suggested
If {{ variable }}
returns TRUE
or FALSE
you can check it with javascript
<td>
<script type="text/javascript">
if( "{{ variable }}" === "FALSE" ) {
document.write("×");
} else {
document.write("✔");
}
</script>
</td>
The above option is NOT SUGGESTED. If you use it in a wrong way it will create problems and security holes (at least escape your strings).
Option 2 - better in this case (suggested)
In the Django template, check if true or false
<td>{% if variable == True %}✔{% else %}×{% endif %}</td>
For more fancy icons check FontAwesome
EDIT 2:
For true/false variables also check tuky's answer, it is a cleaner solution.
I prefer to use the more concise yesno
template filter (https://docs.djangoproject./en/2.2/ref/templates/builtins/#yesno):
<td>{{ variable|yesno:"✔,✘" }}</td>
It also supports an optional 3rd value that will be used, if variable
is None
.
{% if variable %}
<span class="fas fa-check-square" style='font-size:24px;color:green'></span>
{% else %}
<span class="fas fa-window-close" style='font-size:24px;color:red'></span>
{% endif %}
本文标签: javascriptDisplaying check mark and cross instead of boolean TRUE and FalseStack Overflow
版权声明:本文标题:javascript - Displaying check mark and cross instead of boolean TRUE and False? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743719943a2527396.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论