Sha256: 3b67f67336deb46a062d144e2ece9bc35e5c6c012f7c08988865c093c46afa98
Contents?: true
Size: 819 Bytes
Versions: 5
Compression:
Stored size: 819 Bytes
Contents
ACTS_PER_PAGE = 50 view :title do voo.title = "Recent Changes" super() end format :html do view :core do voo.hide :history_legend unless voo.main bs_layout container: true, fluid: true do html _optional_render_history_legend with_drafts: false row 12 do html _render_recent_acts end row 12 do col act_paging end end end view :recent_acts, cache: :never do acts = Act.all_viewable.order(id: :desc) .page(page_from_params).per(ACTS_PER_PAGE) render_act_list acts: acts, act_context: :absolute end def act_paging acts = Act.all_viewable.order(id: :desc).page(page_from_params).per(ACTS_PER_PAGE) wrap_with :span, class: "slotter" do paginate acts, remote: true, theme: 'twitter-bootstrap-3' end end end
Version data entries
5 entries across 5 versions & 1 rubygems