Skip to content

Commit

Permalink
is_viewable and is_submittable are on the form [#169 state:open]
Browse files Browse the repository at this point in the history
  • Loading branch information
zr2d2 committed Aug 8, 2011
1 parent 38ac663 commit 550c24e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/views/feeds/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,18 @@
<%= f.collection_select :group_id, Group.all, :id, :name %>
</div>
</div>
<div class="field">
<%= f.label t(:is_viewable) %>
<div class="inputs">
<%= f.check_box :is_viewable %>
</div>
</div>
<div class="field">
<%= f.label t(:is_submittable) %>
<div class="inputs">
<%= f.check_box :is_submittable %>
</div>
</div>
</div>

<div class="submit_bar actions">
Expand Down
2 changes: 2 additions & 0 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@

en:
hello: "Hello world"
is_viewable: "Viewable"
is_submittable: "Submittable"

0 comments on commit 550c24e

Please sign in to comment.