# encoding: utf-8 wb = xlsx_package.workbook wb.add_worksheet(name: "Lab") do |sheet| heading = sheet.styles.add_style(:b => true, :locked => true) example = sheet.styles.add_style(:i => true) row = ["user_id"] row1 = [""] row2 = [""] row << "name" row1 << "" row2 << "" row << t("personal_lab.lab_title") + " - " + t("en") row1 << "textfield" row2 << "" row << t("personal_lab.lab_title") + " - " + t("zh_tw") row1 << "textfield" row2 << "" row << t("personal_lab.location") + " - " + t("en") row1 << "textfield" row2 << "" row << t("personal_lab.location") + " - " + t("zh_tw") row1 << "textfield" row2 << "" row << t("personal_lab.participating_professor") + " - " + t("en") row1 << "textfield" row2 << "" row << t("personal_lab.participating_professor") + " - " + t("zh_tw") row1 << "textfield" row2 << "" row << t("personal_lab.participating_student") + " - " + t("en") row1 << "textfield" row2 << "" row << t("personal_lab.participating_student") + " - " + t("zh_tw") row1 << "textfield" row2 << "" row << t("personal_lab.year") row1 << "number" row2 << "Example : 2015 or 2014 or 1987" row << t("personal_lab.extension_no") row1 << "textfield" row2 << "" row << t("personal_lab.research_direction") row1 << "textfield" row2 << "" row << t("personal_lab.facility") row1 << "textfield" row2 << "" row << t("personal_lab.url") row1 << "textfield" row2 << "http://domain.com/path" row << t("personal_lab.keywords") row1 << "textfield" row2 << "Example: keyword1,keyword2" row << t("personal_lab.note") row1 << "textarea" row2 << "" sheet.add_row row, :style => heading sheet.add_row row1 sheet.add_row row2, :style => example User.where(:user_name.ne => "rulingcom").each do |user| r = [user.user_name] r << user.name sheet.add_row r end end