Tworzenie powtarzających się pól wewnątrz mojego formularza Symfony2

Pracuję nad projektem college'u, w którym chcę wziąć udział we wszystkich uczniach. Stworzyłem model z 3 polami i, e data, present (boolean) i student_id. Teraz, gdy próbuję wygenerować z niego formularz, wyświetli mi się tylko te 3 pola. Chcę jednak wszystkich uczniów klasy. Stworzyłem pętlę dla uczniów i stworzyłem tablicę obiektów obecności. Teraz utknąłem, nie wiem, jak mogę je przekazać do mojego pliku TWIG, a także jestem zdezorientowany, jeśli jest to właściwy sposób. Oto mój kod modelu i kontrolera

FORMULARZ
<code>namespace College\StudentBundle\Form;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilder;

class StudentAttendanceType extends AbstractType
{
   public function buildForm(FormBuilder $builder, array $options)
   {
     $builder
        ->add('date')
        ->add('present')
    ;
   }

   public function getName()
   {
     return 'college_studentbundle_studentattendancetype';
   }
}
</code>
KONTROLER
<code>public function takeAttendanceAction($Department_Id)
{
    $students = $this->getDoctrine()
    ->getRepository('CollegeStudentBundle:Student')
    ->findAll($Department_Id);

    foreach($students as $key => $student){

        $attendance[$key] = new StudentAttendance();
        $form[$key] = $this->createForm(new StudentAttendanceType(), $attendance[$key]);
    }

    $request = $this->getRequest();
    if ($request->getMethod() == 'POST') {

        $form->bindRequest($request);
        if ($form->isValid()) {

            $em = $this->getDoctrine()
            ->getEntityManager();
            $em->persist($attendance);
            $em->flush();
            return $this->redirect($this->generateUrl('CollegeStudentBundle_index', array('id' => $Department_Id)));
        }
    }
    return $this->render('CollegeStudentBundle:StudentAttendance:take-attendance.html.twig', array(
            'form' => $form->createView(), 'department' => $Department_Id, 'students' => $students,
    ));
}
</code>

Jak mogę renderować formularz w taki sposób, aby wyświetlał mi wszystkich uczniów z oddzielnym polem wyboru?

HTML.TWIG
<code>{% block body  %}
<form  action="{{ path('CollegeStudentBundle_take_attendance',{'id':department} ) }}" method="post" {{ form_enctype(form) }} name="acadimics-form" id="acadimics-form" >

{{ form_errors(form) }}
{{ form_row(forms[0].date) }}

<table id="mytabs" border="1" cellpadding="5" cellspacing="2" width="100%" >
   <tr>
    <th> Enrolment No. </th>
    <th> Student's Name </th>
    <th> Present </th>
   </tr>
  {% for student in students %}
    <tr>
       <td> {{ student.enrolmentNo }} </td>
       <td> {{ student.firstname }} {{ student.lastname }} </td>
       <td> {{ form_row(form.present) }} </td>
        </tr>
  {% endfor %}
  {{ form_rest(form) }}
</table>

<input type="submit" value="Take Attendance"  />
</form>
  </div>

{% endblock %}
</code>

questionAnswers(3)

yourAnswerToTheQuestion