upgrade forms to update and create person

This commit is contained in:
2014-11-07 16:26:15 +01:00
parent 2a3ebb3659
commit 2358e2a9bb
6 changed files with 9 additions and 43 deletions

View File

@@ -1,4 +1,4 @@
{% extends "CLChillMainBundle::layout.html.twig" %}
{% extends "ChillMainBundle::layout.html.twig" %}
{% block title %}{{ 'views.Person.review.title'|trans }}{% endblock title %}
@@ -13,7 +13,6 @@
{% endblock %}
{% form_theme form 'CLChillMainBundle:Form:fields.html.twig' %}
{% block content %}
@@ -31,7 +30,7 @@
{% for person in alternatePersons %}
<tr>
<td>
<a href="{{ path('chill_person_view', {'id': person.id } ) }}">
<a href="{{ path('chill_person_view', {'person_id': person.id } ) }}">
{{ person }}{% spaceless %}{% if person.isOpen == false %}<i class="icon-lock"></i>{% endif %}
{% endspaceless %}
</a>