socialforge/app/views/projects/new.html.erb

16 lines
605 B
Plaintext
Raw Normal View History

<% @nav_dispaly_project_label = 1
@nav_dispaly_forum_label = 1 %>
2014-07-25 17:42:38 +08:00
2013-08-01 10:33:49 +08:00
<%= labelled_form_for @project do |f| %>
2014-07-25 17:42:38 +08:00
<h3><%=l(:label_project_new)%></h3>
<div class="box tabular" >
<p style="font-weight: bold; color: rgb(237,137,36)"> <%=raw l(:label_project_new_description)%> </p>
<%= render :partial => 'form', :locals => { :f => f } %>
<span style="padding-left: 60px">
<%= submit_tag l(:button_create), :class => "enterprise"%>
</span>
</div>
<%#= submit_tag l(:button_create_and_continue), :name => 'continue' %>
<%= javascript_tag "$('#project_name').focus();" %>
2013-08-30 09:34:21 +08:00
<% end %>