Adding generated files

This commit is contained in:
Marc Ducobu
2015-07-01 13:34:14 +02:00
parent cfc7b725d8
commit 5738de5033
33 changed files with 1865 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{% extends '::base.html.twig' %}
{% block body -%}
<h1>ActivityReasonCategory edit</h1>
{{ form(edit_form) }}
<ul class="record_actions">
<li>
<a href="{{ path('activityreasoncategory') }}">
Back to the list
</a>
</li>
<li>{{ form(delete_form) }}</li>
</ul>
{% endblock %}

View File

@@ -0,0 +1,43 @@
{% extends '::base.html.twig' %}
{% block body -%}
<h1>ActivityReasonCategory list</h1>
<table class="records_list">
<thead>
<tr>
<th>Id</th>
<th>Label</th>
<th>Active</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for entity in entities %}
<tr>
<td><a href="{{ path('activityreasoncategory_show', { 'id': entity.id }) }}">{{ entity.id }}</a></td>
<td>{{ entity.label }}</td>
<td>{{ entity.active }}</td>
<td>
<ul>
<li>
<a href="{{ path('activityreasoncategory_show', { 'id': entity.id }) }}">show</a>
</li>
<li>
<a href="{{ path('activityreasoncategory_edit', { 'id': entity.id }) }}">edit</a>
</li>
</ul>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<ul>
<li>
<a href="{{ path('activityreasoncategory_new') }}">
Create a new entry
</a>
</li>
</ul>
{% endblock %}

View File

@@ -0,0 +1,15 @@
{% extends '::base.html.twig' %}
{% block body -%}
<h1>ActivityReasonCategory creation</h1>
{{ form(form) }}
<ul class="record_actions">
<li>
<a href="{{ path('activityreasoncategory') }}">
Back to the list
</a>
</li>
</ul>
{% endblock %}

View File

@@ -0,0 +1,36 @@
{% extends '::base.html.twig' %}
{% block body -%}
<h1>ActivityReasonCategory</h1>
<table class="record_properties">
<tbody>
<tr>
<th>Id</th>
<td>{{ entity.id }}</td>
</tr>
<tr>
<th>Label</th>
<td>{{ entity.label }}</td>
</tr>
<tr>
<th>Active</th>
<td>{{ entity.active }}</td>
</tr>
</tbody>
</table>
<ul class="record_actions">
<li>
<a href="{{ path('activityreasoncategory') }}">
Back to the list
</a>
</li>
<li>
<a href="{{ path('activityreasoncategory_edit', { 'id': entity.id }) }}">
Edit
</a>
</li>
<li>{{ form(delete_form) }}</li>
</ul>
{% endblock %}