scinote-web/app/views/my_modules/_result.html.erb

61 lines
2.8 KiB
Plaintext
Raw Normal View History

2016-07-21 19:11:15 +08:00
<div class="result">
2020-11-25 23:25:17 +08:00
<div class="result-icon">
2016-02-12 23:52:43 +08:00
<% if result.is_text %>
<span class="fas fa-font"></span>
2016-02-12 23:52:43 +08:00
<% elsif result.is_table %>
<span class="fas fa-table"></span>
2016-02-12 23:52:43 +08:00
<% elsif result.is_asset %>
<span class="fas fa-paperclip"></span>
2016-02-12 23:52:43 +08:00
<% end %>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-options pull-right">
<% if result.editable? && can_manage_my_module?(result.my_module) %>
2020-05-03 04:34:11 +08:00
<a class="btn btn-light icon-btn edit-result-button <%= edit_result_button_class(result) %>" id="<%= result.id %>_edit" href="<%= edit_result_link(result) %>" data-remote="true" title="<%= t'my_modules.results.options.edit_title' %>">
<span class="fas fa-pencil-alt"></span>
2016-02-12 23:52:43 +08:00
</a>
<% end %>
<% if can_manage_result?(result) %>
<a href="#"
2020-05-03 04:34:11 +08:00
class="btn btn-light icon-btn form-submit-link"
data-form-id="result-archive-form-<%= result.id %>"
data-confirm-text="<%= t('my_modules.results.archive_confirm') %>"
title="<%= t'my_modules.results.options.archive_title' %>"
onclick="Results.archive(event, this);">
<span class="fas fa-briefcase"></span>
2016-02-12 23:52:43 +08:00
</a>
<%= form_for :result, url: result_path_of_type(result), method: :patch, html: {id: 'result-archive-form-' + result.id.to_s } do |f| %>
<%= f.hidden_field :archived, value: true %>
<% end %>
<% end %>
</div>
2020-07-28 21:39:29 +08:00
<a class="result-panel-collapse-link" href="#result-panel-<%= result.id %>" data-toggle="collapse">
<span class="fas fa-caret-right"></span>
2016-02-12 23:52:43 +08:00
<strong><%= result.name %></strong> |
<span><%= t('my_modules.results.published_on', timestamp: l(result.created_at, format: :full), user: h(result.user.full_name)).html_safe %></span>
2016-02-12 23:52:43 +08:00
</a>
</div>
<div class="panel-collapse collapse" id="result-panel-<%= result.id %>" role="tabpanel">
<div class="panel-body">
<div class="row">
2018-06-08 20:22:03 +08:00
<div class="col-xs-12" data-hook="result-content">
<%= render partial: 'my_modules/result_user_generated.html.erb',
2016-11-10 21:11:32 +08:00
locals: { result: result } %>
2016-02-12 23:52:43 +08:00
</div>
</div>
<% if can_read_experiment?(@my_module.experiment) %>
<div class="row">
<div class="result-comment"
id="result-comments-<%= result.id %>"
data-href="<%= result_result_comments_url(result) %>">
<%= render partial: "result_comments/index.html.erb",
locals: { result: result, comments: result.last_comments, per_page: Constants::COMMENTS_SEARCH_LIMIT } %>
</div>
</div>
<% end %>
2016-02-12 23:52:43 +08:00
</div>
</div>
</div>
</div>