thomas-claireau/PHP-P6-Openclassrooms

View on GitHub
templates/admin/category/new.html.twig

Summary

Maintainability
Test Coverage
{% extends 'base.html.twig' %}

{% block title %}
    New Category
{% endblock %}

{% block h1 'Gérer les figures' %}
{% block subtitle 'Snow Tricks' %}


{% block body %}
    <h1>
        Créer une nouvelle catégorie
    </h1>

    {{ include('admin/category/_form.html.twig') }}

    <a href="{{ path('admin.category.index') }}" class="btn btn-secondary">
        Retour à la liste des catégories
    </a>
{% endblock %}