Symfony2 + Assetic + Twigに画像のURLを生成させるより短い方法はありますか?
{% image '@ACMEBundle/Resources/public/img/longer.png' %}
<img src="{{ asset_url }}" />
{% endimage %}
理想的には、次のようなものです。
<img src="{{ bundle_resource_url('@ACMEBundle/Resources/public/img/shorter.png') }}" />