15 lines
717 B
Plaintext
15 lines
717 B
Plaintext
<%= content_for(:header_tags) do %>
|
|
<%= import_ke(enable_at: false, prettify: false, init_activity: true) %>
|
|
<% end %>
|
|
|
|
<%= render :partial => 'new' %>
|
|
<% unless @documents.nil? %>
|
|
<% @documents.each do |document| %>
|
|
<script>
|
|
$(function() {
|
|
sd_create_editor_from_data(<%= OrgActivity.where("org_act_type='OrgDocumentComment'and org_act_id=?", document.id).first.id %>, null, "100%", "OrgActivity");
|
|
});
|
|
</script>
|
|
<%= render :partial => 'organizations/show_org_document', :locals => {:document => document, :act => OrgActivity.where("org_act_type='OrgDocumentComment'and org_act_id=?", document.id).first, :flag => 0} %>
|
|
<% end %>
|
|
<% end %> |