PHP Classes

File: Resources/views/list.html.twig

Recommend this page to a friend!
  Classes of Roni   Easy PHP Config Bundle   Resources/views/list.html.twig   Download  
File: Resources/views/list.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Easy PHP Config Bundle
Application configuration management using forms
Author: By
Last change:
Date: 10 months ago
Size: 966 bytes
 

Contents

Class file image Download
{% extends '@XiideaEasyConfig/layout.html.twig' %} {% block xiidea_config_content %} <div class="card card-custom" data-card="true"> <div class="card-body"> <table class="table table-bordered"> <tbody> {% for groupKey, configuration in configurationGroup %} <tr> <td>{{ configuration.label }}</td> <td> <a class="btn btn-primary" href="{{ path(configuration.routeName, {'key': groupKey}) }}"> {% if is_granted(configuration.authorSecurityLevels) %} Edit{% else %}View{% endif %} </a> </td> </tr> {% endfor %} </tbody> </table> </div> </div> {% endblock xiidea_config_content %}