A website template with lots of features, built with ruby on rails.

admin_panel_controller.rb 273B

    class AdminPanelController < ApplicationController def index redirect_to admin_dashboard_path end def dashboard @users = User.all @posts = BlogPost.all end def posts @posts = BlogPost.all end def users @users = User.all end end