PHP Classes

File: templates/tests.html.twig

Recommend this page to a friend!
  Packages of Julio Vergara   GitHub API   templates/tests.html.twig   Download  
File: templates/tests.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GitHub API
Present the most starred PHP projects in GitHub
Author: By
Last change:
Date: 6 days ago
Size: 560 bytes
 

Contents

Class file image Download
{% extends 'base.html.twig' %} {% block body %} <h1>List of test entities</h1> <div class="my-3"> <form method="POST" action="{{ path('test_add') }}" class="d-inline-block"> <button class="btn btn-primary">Add</button> </form> <form method="POST" action="{{ path('test_clear') }}" class="d-inline-block"> <button class="btn btn-danger">Clear</button> </form> </div> <ol> {% for test in tests %} <li>{{ test.nameAndDescription }}</li> {% endfor %} </ol> {% endblock %}