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 'WebFactoryPurchaseBundle::layout.html.twig' %} | |
{% block content %} | |
<div class="contenttitle radiusbottom0"> | |
<h2 class="table"><span>{{ 'Expense list'|trans }}</span></h2> | |
</div><!--contenttitle--> | |
{{ grid(grid, _self) }} | |
{% block grid_column_type_filter %} |
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
<?php | |
namespace WebFactory\PurchaseBundle\Controller; | |
use Symfony\Bundle\FrameworkBundle\Controller\Controller; | |
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; | |
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; | |
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; | |
use WebFactory\PurchaseBundle\Entity\Expense; | |
use WebFactory\PurchaseBundle\Form\ExpenseType; |
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
<?php | |
namespace WebFactory\PurchaseBundle\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
use APY\DataGridBundle\Grid\Mapping as Grid; | |
use Symfony\Component\Validator\Constraints as Assert; | |
/** | |
* WebFactory\PurchaseBundle\Entity\Expense |
NewerOlder