<% end %>
\ No newline at end of file
diff --git a/app/views/admin/researchs/_research_category.html.erb b/app/views/admin/researchs/_research_category.html.erb
new file mode 100644
index 0000000..8e74e89
--- /dev/null
+++ b/app/views/admin/researchs/_research_category.html.erb
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/app/views/admin/researchs/index.html.erb b/app/views/admin/researchs/index.html.erb
index 207d003..9fc758b 100644
--- a/app/views/admin/researchs/index.html.erb
+++ b/app/views/admin/researchs/index.html.erb
@@ -5,6 +5,7 @@
+
+
\ No newline at end of file
diff --git a/app/views/plugin/personal_research/_profile.html.erb b/app/views/plugin/personal_research/_profile.html.erb
index 9f14752..6c08464 100644
--- a/app/views/plugin/personal_research/_profile.html.erb
+++ b/app/views/plugin/personal_research/_profile.html.erb
@@ -31,6 +31,7 @@
<%= t('personal_research.year') %>
<%= t('personal_research.publication_date') %>
<%= t('personal_research.research_title') %>
+
<%= t('personal_research.research_category') %>
@@ -54,6 +55,7 @@
+
<%= research.research_category.title rescue "" %>
<% end %>
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 7665fa2..905f206 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -9,6 +9,7 @@ en:
authors : "Authors"
tags : "Tags"
year : "Year"
+ research_category: Category
language : "Language"
isbn : "ISSN(ISBN)"
vol_no : "Vol.No"
diff --git a/config/locales/zh_tw.yml b/config/locales/zh_tw.yml
index 31a18fa..33ed1a4 100644
--- a/config/locales/zh_tw.yml
+++ b/config/locales/zh_tw.yml
@@ -10,6 +10,7 @@ zh_tw:
tags : "領域"
year : "年度"
language : "語言"
+ research_category: Category
isbn : "ISSN(ISBN)"
vol_no : "卷數"
issue_no : "期數"
diff --git a/config/routes.rb b/config/routes.rb
index bc25b26..c6cec9f 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -25,6 +25,8 @@ Rails.application.routes.draw do
end
end
+ resources :research_categories
+ post "research_categories/update_order" => "research_categories#update_order"
end
end
end