/
home
/
obinna
/
html
/
restaurants
/
templates
/
Users
/
Upload File
HOME
{% extends 'base1.html.twig' %} {% block content %} <div class="content"> <div class="row"> <div class="col-sm-10"> <div class="card"> <div class="card-header"> <h3>Places</h3> </div> <div class="card-body"> <table class="table table-default"> <thead> <tr> <th>Name</th> <th>Details</th> <th>Food</th> <th>Food Categories</th> </tr> </thead> <tbody> {% for place in owned %} <tr> <td>{{ place.name }}</td> <td><a class="btn btn-primary" href="{{ path('profile', {'place_slug': place.slug}) }}">Details</a></td> <td><a class="btn btn-success" href="{{ path('items', {'place_slug': place.slug}) }}">Food Menu</a></td> <td><a class="btn btn-primary" href="{{ path('category', {'place_slug': place.slug}) }}">Categories</a></td> </tr> {% endfor %} </tbody> </table> </div> </div> </div> </div> </div> <script> </script> {% endblock %}