templates/applicant/index.html.twig line 1

Open in your IDE?
  1. {% extends 'applicant/layout.html.twig' %}
  2. {% block content %}
  3. {{ include('_message.html.twig') }}
  4. {% for batch in batches %}
  5. <div class="card">
  6.   <div class="card-body">
  7.     <h5 class="card-title border-bottom">{{ batch.name }}</h5>
  8.     <p class="card-text">
  9.         <a href="{{ path('applicant_project_index', {id:batch.id}) }}" class="btn btn-primary btn-sm" role="button">
  10.         {% if is_granted('applicant_action', batch) %}提交材料{% else %}查看我的提交{% endif %}
  11.         </a>
  12.     </p>
  13.     <ul class="list-group">
  14.         {% for notice in batch.notices %}
  15.         <li class="list-group-item d-flex justify-content-between align-items-center">
  16.             <a href="{{ path('notice',{id:notice.id}) }}" target="_blank">{{ notice.name }}</a></a>
  17.             <span class="badge bg-secondary rounded-pill">{{ notice.createdAt|date('Y-m-d') }}</span>
  18.         </li>
  19.         {% endfor %}
  20.     </ul>
  21.   </div>
  22. </div>
  23. <br>
  24. {% endfor %}
  25. {% endblock %}