<% if !my_module.completed? && can_manage_my_module?(my_module) %>
<%= link_to due_date_my_module_path(my_module, format: :json), remote: true,
class: "due-date-link due-date-refresh" do %>
<%= render partial: "my_modules/card_due_date_label.html.erb", locals: { my_module: my_module, format: :full_date } %>
<% end %>
<% else %>
<%= render partial: "my_modules/card_due_date_label.html.erb", locals: { my_module: my_module, format: :full_date } %>
<% end %>
<%= t('experiments.canvas.full_zoom.due_date') %>
<%= my_module.due_date ? l(my_module.due_date, format: :full_date) : t('experiments.canvas.full_zoom.no_due_date') %>
<%= t('experiments.module_archive.archived_on') %>
<%= my_module.archived_branch? ? l(my_module_archived_on(my_module), format: :full_date) : t('experiments.canvas.full_zoom.no_due_date') %>
<% if my_module.status_changing %>
<%= t('experiments.canvas.full_zoom.status_transitioning_label') %>
<% end %>
<%= my_module.my_module_status.name %>