浏览代码

Merge pull request #163 from simpler/master

Use <th> instead of <td> tags in the view table
Thomas 14 年之前
父节点
当前提交
f8d6427822
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Resources/views/CRUD/base_view_field.html.twig

+ 1 - 1
Resources/views/CRUD/base_view_field.html.twig

@@ -11,6 +11,6 @@ file that was distributed with this source code.
 
 
 <tr>
-    <td>{% block name %}{{ field_description.name }}{% endblock %}</td>
+    <th>{% block name %}{{ field_description.name }}{% endblock %}</th>
     <td>{% block value %}{{ value }}{% endblock %}</td>
 </tr>