/
home
/
obinna
/
html
/
boazapp
/
templates
/
loading
/
Upload File
HOME
{% extends 'base2.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">{{ type }} Release Orders - {{ product }}</h4> </div> <div class="content table-responsive table-full-width"> <table class="table datatable table-hover"> <thead> <tr> <th>ID</th> <th>Name</th> <th>Quantity</th> <th>Customer</th> <th>Date</th> </tr> </thead> <tbody> {% for item in release %} <tr> <td>{{ item.id }}</td> <td><a href="{{ path('addLoad', {'id': item.id}) }}"><h5>{{ item.name }}</h5></a></td> <td>{{ item.quantity }}</td> <td>{{ item.customer }}</td> <td>{{ item.date }}</td> </tr> {% endfor %} </tbody> </table> </div> </div> </div> </div> </div> </div> {% endblock %}