Browse Source

Merge pull request #163 from simpler/master

Use <th> instead of <td> tags in the view table
Thomas 14 years ago
parent
commit
f8d6427822
1 changed files with 1 additions and 1 deletions
  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>