Akelos Framework v1 forum archive. This forum is no longer maintained. To report bugs please visit https://github.com/akelos/akelos/issues
    • CommentAuthorejunker
     
    It would be nice if the helpers could be used with sintags so you could code like this:

    {url_helper.link_to(_{'Back to overview'}, array('action' => 'listing'))}

    or even more preferred like this:

    {link_to(_{'Back to overview'}, array('action' => 'listing'))}
    •  
      CommentAuthorbermi
     

    You can actually do

    <%= link_to _"Back to overview", :action => 'listing' %>
    

    I will soon publish a variant on the new Akelos based CMS Editam where you can use something like

    {%= link_to _"Back to overview", :action = 'listing' %}
    

    Which will play better with WYSIWYG editors.