Sha256: 1d4713da95203baf336569b02eb5cb3f61b869d854d0ab760bfc75ac4ddba831

Contents?: true

Size: 866 Bytes

Versions: 14

Compression:

Stored size: 866 Bytes

Contents

<% membership = membership || Membership.new %>
<div class="form-group">
  <%= label_tag "membership[start_date]", "Start Date" %>
  <%= text_field_tag "membership[start_date]", {}, type: :date, class: "form-control", value: (membership.start_date || Time.zone.today) %>
</div>
<div class="form-group">
  <%= label_tag "membership[end_date]", "End Date" %>
  <%= text_field_tag "membership[end_date]", {}, type: :date, class: "form-control", value: (membership.end_date || Time.zone.today + 1.week) %>
</div>
<% if Rails.application.config.study_length_in_weeks %>
  <p>
    Standard number of weeks: <%= Rails.application.config.study_length_in_weeks %>,
    Projected End Date from today: <label id="membership_end_date_calculation"><%= projected_end_date(membership) %></label>
  </p>
<% end %>

<% if Rails.application.config.study_length_in_weeks %>

<% end %>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
think_feel_do_dashboard-1.2.1 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.2.0.beta1 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.21 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.20 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.19 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.18 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.17 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.16 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.15 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.14 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.13 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.12 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.11 app/views/think_feel_do_dashboard/memberships/_dates.html.erb
think_feel_do_dashboard-1.1.10 app/views/think_feel_do_dashboard/memberships/_dates.html.erb