소스 검색

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 %}