1

index.html.twig ファイルで正常に拡張された base.html.twig テンプレートがあります。これは、base.html.twig ファイルが適切に形成され、正しく呼び出されていることを意味します (これは、 Symfony ですので、ご容赦ください。) APYDataGridBundle のインストールに成功し、空のテンプレートにグリッドを表示できるようになりました。

{{ grid(grid) }}

しかし、index.html.twig で base.html.twig を拡張すると、エラーが発生します。コード:

{% extends '::base.html.twig' %}
{{ grid(grid) }}

このエラーが発生します: 別のテンプレートを拡張するテンプレートは、2 行目の TestTranspoBundle:Programs:index.html.twig に本文を含めることはできません。

APYDataGridBundle の問題ではこれについて何も見ていません。私の側のユーザー エラーではなく、彼らのせいである場合、大きな問題になるようです。だから私は初心者の間違いをしているだけだと思っています。

テンプレートを呼び出しているコントローラーは次のとおりです。

namespace Test\TranspoBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use APY\DataGridBundle\Grid\Source\Entity;

class ProgramsController extends Controller
{
    public function indexAction()
    {
      $source = new Entity('TestTranspoBundle:Programs');
      $grid = $this->get('grid');
      $grid->setSource($source);
      $grid->isReadyForRedirect();
      return $this->render('TestTranspoBundle:Programs:index.html.twig', array('grid' => $grid));
    }
}

base.html.twig は次のとおりです。

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>{% block title %}My System - Symfony{% endblock %}</title>
        {% block stylesheets %}
          <!-- blueprint CSS framework -->
          <link rel="stylesheet" type="text/css" href="{{ asset('bundles/testtranspo/css/screen.css') }}" media="screen, projection" >
          <link rel="stylesheet" type="text/css" href="{{ asset('bundles/testtranspo/css/print.css') }}" media="print" >
          <!--[if lt IE 8]>
              <link rel="stylesheet" type="text/css" href="{{ asset('bundles/testtranspo/css/ie.css') }}" media="screen, projection" >
          <![endif]-->

          <link rel="stylesheet" type="text/css" href="{{ asset('bundles/testtranspo/css/main.css') }}" >
          <link rel="stylesheet" type="text/css" href="{{ asset('bundles/testtranspo/css/form.css') }}" >
        {% endblock %}
        <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
    </head>
    <body>
      <div class="container" id="page">
        <div id="header">
          <div id="logo">
            <span>My System</span>
            <span id="logout">Hi, Logged In User. <a href="https://weblogin.umich.edu/cgi-bin/logout">Log out.</a>
            </span>
          </div>
        </div>
        <div id="mainmenu">
          {% block sidebar %}
            <ul>
              <li class="first" id="nav-people"><a href="{{ path('_people_index') }}">People</a></li>

              <li class="first" id="nav-reservations"><a href="{{ path('_reservations_index') }}">Reservations</a></li>
              <li class="first" id="nav-vehicles"><a href="{{ path('_vehicles_index') }}">Vehicles</a></li>
              <li class="first" id="nav-programs"><a href="{{ path('_programs_index') }}">Programs</a></li>
              <li class="first" id="nav-destinations"><a href="{{ path('_destinations_index') }}">Destinations</a></li>
              <li class="first" id="nav-reports"><a href="{{ path('_reports_index') }}">Reports</a></li>

              {% if TRUE %}
                <li class="first" id="nav-installation"><a href="{{ path('_installation_update') }}">Site On/Off</a></li>
              {% endif %}
            </ul>
          {% endblock %}
        </div>
        <div id="content">
          {% block body %}{% endblock %}
        </div>
      </div>
        {% block javascripts %}{% endblock %}
    </body>
</html>
4

1 に答える 1