Compare commits

..

1 Commits

Author SHA1 Message Date
chiu 76e48a4569 Revert "Update _profile.html.erb"
This reverts commit a8fa2f641c
2019-11-03 18:06:50 +08:00
1 changed files with 8 additions and 0 deletions

View File

@ -4,6 +4,7 @@
<% content_for :page_specific_javascript do %>
<%= javascript_include_tag "lib/list-check" %>
<% end %>
<%
if has_access?
@writing_journals = JournalPaper.where(member_profile_id: @member.id).desc(:year).page(params[:page]).per(10)
@ -11,6 +12,7 @@
@writing_journals = JournalPaper.where(is_hidden: false, member_profile_id: @member.id).desc(:year).page(params[:page]).per(10)
end
%>
<% if has_access? %>
<div class="list-active">
<div class="btn-group">
@ -19,6 +21,7 @@
</div>
</div>
<% end -%>
<table class="table table-condensed table-striped main-list">
<thead>
<tr>
@ -53,13 +56,16 @@
<% end %>
</ul>
</div>
</td>
<td><%= writing_journal.authors %></td>
</tr>
<% end %>
</tbody>
</table>
<div class="bottomnav clearfix">
<% if has_access? %>
<div class="action pull-right">
@ -72,6 +78,7 @@
<%= paginate @writing_journals, :params => {:direction => params[:direction], :sort => params[:sort] } %>
</div>
</div>
<div id="dialog" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="Delete item" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
@ -82,3 +89,4 @@
<button class="delete-item btn btn-danger"><%= t(:submit) %></button>
</div>
</div>