Browse Subversion Repository
Contents of /trunk/redmine_glossary/app/views/glossary/add_term_category.html.erb
Parent Directory
| Revision Log
Revision 82 -
( show annotations)
( download)
Sun Mar 23 19:06:39 2014 UTC
(10 years, 1 month ago)
by myoshida
File size: 362 byte(s)
Fix form unvisible.
<% form_tag .. %> => <%= form_tag .. %>
| 1 |
<h2><%=l(:label_term_category_new)%></h2> |
| 2 |
|
| 3 |
<%= labelled_form_for(:category, @category, |
| 4 |
:url => { :action => 'add_term_category', |
| 5 |
:project_id => @project }) do |f| %> |
| 6 |
<%= render :partial => 'term_categories/form', :locals => { :f => f } %> |
| 7 |
<%= submit_tag l(:button_create) %> |
| 8 |
<% end %> |
| 9 |
|
| 10 |
<% html_title(l(:glossary_title)) -%> |
|