/
home
/
obinna
/
html
/
boazapp
/
templates
/
release
/
Upload File
HOME
{% extends 'base1.html.twig' %} {% block content %} <div class="content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="header"> <h4 class="title">Release Orders</h4> </div> <div class="content table-responsive table-full-width"> <table class="table table-hover" data-page-length='100'> <thead> <tr> <th>Release Order Name</th> <th>Date</th> <th>Actions</th> </tr> </thead> <tbody> {% for item in release %} <tr> <td>{{ item.name }}</td> <td>{{ item.dates|date('d-m-Y') }}</td> <td><a href="{{ path('viewRelease', {'id': item.id}) }}">View Release Order</a></td> </tr> {% endfor %} </tbody> </table> </div> </div> </div> </div> </div> </div> {% endblock %}