You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class PartnersController < ApplicationController
|
|
layout 'base_management'
|
|
|
|
def index
|
|
@menu_type = 6
|
|
@sub_type = 3
|
|
|
|
@partners = Partner.includes(:school)
|
|
end
|
|
|
|
def new
|
|
|
|
end
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
def create
|
|
|
|
end
|
|
|
|
def destroy
|
|
|
|
end
|
|
|
|
private
|
|
|
|
end
|