{% extends 'base.html.twig' %} {% block title %}DutyType index{% endblock %} {% block body %}

DutyType index

{% for duty_type in duty_types %} {% else %} {% endfor %}
Id Title HourlyPrice Status NoVote YesVote VoteCommentary actions
{{ duty_type.id }} {{ duty_type.title }} {{ duty_type.hourlyPrice }} {{ duty_type.status ? 'Yes' : 'No' }} {{ duty_type.noVote ? duty_type.noVote|join(', ') : '' }} {{ duty_type.yesVote ? duty_type.yesVote|join(', ') : '' }} {{ duty_type.voteCommentary ? duty_type.voteCommentary|json_encode : '' }} show edit
no records found
Create new {% endblock %}