Displaying 1 result from an estimated 1 matches for "asig_nombre".
2013 May 13
1
RAILS GET IDS
...ids, :asignatura_ids,
:nivel_id
belongs_to :clase
has_many :asignaturas_mallas_nivels
has_many :asignaturas, :through => :asignaturas_mallas_nivels
has_many :nivels, :through => :asignaturas_mallas_nivels
end
class Asignatura < ActiveRecord::Base
attr_accessible :asig_abreviat, :asig_nombre
has_many :distributivos
has_many :notas
has_many :asignaturas_mallas_nivels
has_many :mallas, :through => :asignaturas_mallas_nivels
has_many :nivels, :through => :asignaturas_mallas_nivels
end
class Nivel < ActiveRecord::Base
attr_accessible :nivel_descrip, :nivel_numero, :ni...