37 lines
1.8 KiB
Plaintext
37 lines
1.8 KiB
Plaintext
|
<h3><%=l(:label_first_page_made)%></h3>
|
||
|
|
||
|
<%= form_tag(:controller => 'admin', :action => 'course_page_made') do %>
|
||
|
<p style="margin-left:60px;padding-right: 20px;">
|
||
|
<label for='web_title'><%= l(:label_web_title) %>:</label>
|
||
|
<%= text_field_tag 'web_title', params[:wbe_title],:value => @first_page.web_title, :size => 30,:style => "font-size:small;width:490px;margin-left:10px;" %>
|
||
|
</p>
|
||
|
<div class="tabs">
|
||
|
<ul>
|
||
|
<li><%= link_to l(:label_project_first_page), {:action => 'first_page_made'} %></li>
|
||
|
<li><%= link_to l(:label_course_first_page), {:action => 'course_page_made'}, :class => 'selected' %></li>
|
||
|
<li><%= link_to l(:label_contest_first_page), {:action => 'contest_page_made'} %></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<h4><%=l(:label_course_first_page)%></h4>
|
||
|
<p style="margin-left:60px;padding-right: 20px;">
|
||
|
<label for='attachments_fields'> <%= l(:label_site_image) %>:</label>
|
||
|
</p>
|
||
|
<div style="margin-left: 82px;">
|
||
|
<%= render :partial=>"avatar/avatar_form",:style => "display:inline",:locals=> {source:@course_page} %>
|
||
|
</div>
|
||
|
<p style="margin-left:60px;padding-right: 20px;">
|
||
|
<label for='course_title'> <%= l(:label_site_title) %>:</label>
|
||
|
<%= text_field_tag 'course_title', params[:label_site_title], :value => @course_page.title,:size => 30,:style => "font-size:small;width:490px;margin-left:10px;" %>
|
||
|
</p>
|
||
|
<p style="margin-left:60px;padding-right: 20px;">
|
||
|
<label for='course_description' style="vertical-align: top"> <%= l(:label_site_description)%>:</label>
|
||
|
<%= text_area_tag 'course_description',@course_page.description,:rows => 8, :size => 30,:style => "font-size:small;width:490px;margin-left:10px;" %>
|
||
|
</p>
|
||
|
|
||
|
<%= submit_tag l(:button_save), :class => "small", :name => nil %>
|
||
|
<% end %>
|
||
|
<div>
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|