<% title "Kontoauszug für #{@group.name}" %>

Kontostand: <%= number_to_currency(@group.account_balance) -%> (zuletzt aktualisiert vor <%= distance_of_time_in_words(Time.now, @group.account_updated) -%>)

Überweisungen

<%= text_field_tag("query", params['query'], :size => 10 ) %>
<%= observe_field 'query', :frequency => 2, :before => "Element.show('loader')", :success => "Element.hide('loader')", :url => {:action => 'list'}, :with => 'query', :update => 'transactions' %>
<%= render :partial => "list" %>

<%= link_to 'Neue Transaktion', :action => 'new', :id => @group %>

<%= link_to 'Gruppenübersicht', :action => 'index' %>