Completely rework the navigation
Get rid of the admin layout Get rid of the navbar custom style, use bootstrap-sass variables instead Get rid of all the scaffold files
This commit is contained in:
parent
2af8792495
commit
252e1fe544
47 changed files with 179 additions and 252 deletions
|
|
@ -1,6 +1,5 @@
|
|||
class Admin::ConferenceController < ApplicationController
|
||||
before_filter :verify_organizer
|
||||
layout "admin"
|
||||
|
||||
def index
|
||||
@conferences = Conference.all
|
||||
|
|
@ -31,6 +30,7 @@ class Admin::ConferenceController < ApplicationController
|
|||
end
|
||||
|
||||
def show
|
||||
@conferences = Conference.all
|
||||
@conference = Conference.find_all_by_short_title(params[:id]).first
|
||||
respond_to do |format|
|
||||
format.html
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue