Sha256: 75e7fbf63a144e10d24c2786e36ca60572b8022e215a03ed7757e0e229019f26

Contents?: true

Size: 362 Bytes

Versions: 2

Compression:

Stored size: 362 Bytes

Contents

<%- @title= 'New Note' %>
<%
  doc = Note.new :issue_on=> Date.today, :process_at => Time.now
%>
<div name= "note_new">
    
  <%= fields_for doc, validate: true  do |f| %>
  <%= f.label :title, "Title" %>
  <%= f.text_field :title %><Br>
  <%= f.label :body, "Body Content" %>
  <%= f.cktext_area :body, :cols=>50, :rows=>6, required: true  %>
<% end %>
</div>

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
jinda-5-0.4.5 lib/generators/jinda/templates/app/views/notes/new/new_note.html.erb
jinda-0.4.5 lib/generators/jinda/templates/app/views/notes/new/new_note.html.erb