Просмотр исходного кода

Count posts per layer in the view not the controller

master
Adrian Short 11 лет назад
Родитель
Сommit
08a790c89e
2 измененных файлов: 2 добавлений и 4 удалений
  1. +0
    -3
      app/controllers/layers_controller.rb
  2. +2
    -1
      app/views/layers/show.html.haml

+ 0
- 3
app/controllers/layers_controller.rb Просмотреть файл

@@ -19,9 +19,6 @@ class LayersController < ApplicationController
@feed = Feed.new
@feed.new_layer_id = @layer.id

@layer_posts = 0
@layer.feeds.each { |f| @layer_posts += f.posts.size }

respond_to do |format|
format.html # show.html.erb
format.json { render json: @layer }


+ 2
- 1
app/views/layers/show.html.haml Просмотреть файл

@@ -24,8 +24,9 @@
%th
%th
%th
- @layer_posts = 0
- @layer.feeds.each do |f|
- @layer_posts += f.posts.count
%tr
%td
.feed_title


Загрузка…
Отмена
Сохранить