seitime-frappe/frappe/public/html/error_object.html
2015-12-16 19:39:55 +05:30

12 lines
267 B
HTML

{% if (Object.prototype.toString.call(x) === "[object Object]") { %}
<table class="table">
{% for (var key in x) { %}
<tr>
<td><code>{{ key }}</code></td>
<td>{{ x[key] }}</td>
</tr>
{% } %}
</table>
{% } else { %}
{{ x }}
{% } %}