Skip to content

Instantly share code, notes, and snippets.

@rbrancher
Last active December 11, 2015 22:09
Show Gist options
  • Save rbrancher/4667879 to your computer and use it in GitHub Desktop.
Save rbrancher/4667879 to your computer and use it in GitHub Desktop.
<dl class="field">
<dt>status</dt>
<dd><%= f.radio_button :published, false %><%= f.label :published, " #{t('publisher.draft')}", :value => false %></dd>
<dd><%= f.radio_button :published, true %><%= f.label :published, " #{t('publisher.published')}", :value => true %></dd>
</dl>
<dl class="field">
<dt><%= f.label :published_at %></dt>
<dd>
<%= f.text_field :published_at, value: object.published_at.try(:strftime, '%d/%m/%Y'), class: 'datepicker' %>
</dd>
</dl>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment