Fix bug.
This commit is contained in:
parent
976dcf6418
commit
0311726412
|
@ -1,5 +1,5 @@
|
||||||
class AsiaDatabasesController < ApplicationController
|
class AsiaDatabasesController < ApplicationController
|
||||||
include Admin::AsiaTeachersHelper
|
include Admin::AsiaDatabasesHelper
|
||||||
ExtraFields = {
|
ExtraFields = {
|
||||||
'discipline_expertise'=> ['discipline_expertise'],
|
'discipline_expertise'=> ['discipline_expertise'],
|
||||||
'project'=> ['project_name', 'start_date', 'sponsor'],
|
'project'=> ['project_name', 'start_date', 'sponsor'],
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
<style type="text/css">
|
||||||
|
td.discipline_expertise{
|
||||||
|
white-space: break-spaces;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<table class="table main-list tablet footable-loaded">
|
<table class="table main-list tablet footable-loaded">
|
||||||
<caption><h3><%= @asia_academy.academy_name %><%= " - #{@asia_depart.department_name}" if @asia_depart.department_name.present? %></h3></caption>
|
<caption><h3><%= @asia_academy.academy_name %><%= " - #{@asia_depart.department_name}" if @asia_depart.department_name.present? %></h3></caption>
|
||||||
<thead>
|
<thead>
|
||||||
|
@ -15,7 +20,7 @@
|
||||||
<% @asia_teachers.each do |teacher| %>
|
<% @asia_teachers.each do |teacher| %>
|
||||||
<tr>
|
<tr>
|
||||||
<td><h4><%= teacher.teacher %></h4></td>
|
<td><h4><%= teacher.teacher %></h4></td>
|
||||||
<td><%= teacher.discipline_expertise %></td>
|
<td class="discipline_expertise"><%= teacher.discipline_expertise.join("\n") rescue nil %></td>
|
||||||
<td><a href="<%=asia_projects_admin_asia_database_path(teacher)%>"><%= teacher.asia_projects.count %></a></td>
|
<td><a href="<%=asia_projects_admin_asia_database_path(teacher)%>"><%= teacher.asia_projects.count %></a></td>
|
||||||
<td><a href="<%=asia_papers_admin_asia_database_path(teacher)%>"><%= teacher.asia_papers.count %></a></td>
|
<td><a href="<%=asia_papers_admin_asia_database_path(teacher)%>"><%= teacher.asia_papers.count %></a></td>
|
||||||
<td><a href="<%=asia_patents_admin_asia_database_path(teacher)%>"><%= teacher.asia_patents.count %></a></td>
|
<td><a href="<%=asia_patents_admin_asia_database_path(teacher)%>"><%= teacher.asia_patents.count %></a></td>
|
||||||
|
|
Loading…
Reference in New Issue