Created
November 9, 2017 14:11
-
-
Save hason/6a283b21f95a03beba31fb610a8c8867 to your computer and use it in GitHub Desktop.
Test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "base.html.twig" %} | |
{% block body %} | |
<h1>Students</h1> | |
<form name="student" action="{{ path('app_student_register') }}" method="post"> | |
<table> | |
<tr> | |
<th>#</th> | |
<th>Name</th> | |
<th>Isic</th> | |
<th>Actions</th> | |
</tr> | |
{% for student in students %} | |
<tr> | |
<td>{{ loop.index }}</td> | |
<td>{{ student.name }}</td> | |
<td>{{ student.isic }}</td> | |
<td></td> | |
</tr> | |
{% endfor %} | |
<tr> | |
<td></td> | |
<td><input type="text" name="name"></td> | |
<td><input type="text" name="isic"></td> | |
<td><button type="submit">Register</button></td> | |
</tr> | |
</table> | |
</form> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment