{% extends 'admin/layouts/base.html.twig' %} {% block title %}View Product{% endblock %} {% set active = 'app_admin_category' %} {% set breadcrumbs = [ { 'link': path('app_admin_dashboard'), 'title': 'Home' }, { 'title':'Product Management', }, { 'link': path('app_admin_category'), 'title': 'Category', }, { 'title': 'View', } ]%} {% block content %}
| Id | {{ category.id }} |
|---|---|
| Name | {% if category.name is empty %} N/A {% else %} {{ category.name }} {% endif %} |
| Description | {% if category.description is empty %} N/A {% else %} {{ category.description }} {% endif %} |
| Status | {% if category.status is empty %} N/A {% else %} {% if category.status == 1 %} {{ "Active"|upper }} {% elseif category.status == 0 %} {{ "Inactive"|upper }} {% endif %} {% endif %} |