浏览代码

tweaked HTML

Fabien Potencier 14 年之前
父节点
当前提交
a28627dfaf
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/security.twig.html

+ 4 - 4
src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/security.twig.html

@@ -19,11 +19,11 @@ Security
 {% block panel %}
     <h2>Security</h2>
     {% if collector.authenticated %}
-        <strong>{{ collector.user }}</strong><br />
-        <strong>Roles</strong>: {{ collector.roles|yaml_encode }}
+        Username: <strong>{{ collector.user }}</strong><br />
+        Roles: {{ collector.roles|yaml_encode }}
     {% elseif collector.enabled %}
-        <em>No token.</em>
+        <em>No token</em>
     {% else %}
-        <em>The security component is disabled.</em>
+        <em>The security component is disabled</em>
     {% endif %}
 {% endblock %}