Show More
Commit Description:
[web] more styling...
Commit Description:
[web] more styling
git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@180 6386c4cd-e34a-4fa8-8920-d93eb39b512e
References:
File last commit:
Show/Diff file:
Action:
app/views/problems/_form.rhtml
| 33 lines
| 1.1 KiB
| text/html+ruby
| RhtmlLexer
|
|
r0 | <%= error_messages_for 'problem' %> | ||
<!--[form:problem]--> | ||||
<p><label for="problem_name">Name</label><br/> | ||||
<%= text_field 'problem', 'name' %></p> | ||||
<p><label for="problem_full_name">Full name</label><br/> | ||||
<%= text_field 'problem', 'full_name' %></p> | ||||
<p><label for="problem_full_score">Full score</label><br/> | ||||
<%= text_field 'problem', 'full_score' %></p> | ||||
<p><label for="problem_date_added">Date added</label><br/> | ||||
<%= date_select 'problem', 'date_added' %></p> | ||||
|
r92 | <%= error_messages_for 'description' %> | ||
<p><label for="description_body">Description</label><br/> | ||||
<%= text_area :description, :body, :rows => 10, :cols => 80 %></p> | ||||
<p><label for="description_markdowned">Markdowned?</label> | ||||
<%= select "description", | ||||
"markdowned", | ||||
[['True',true],['False',false]], | ||||
{:selected => (@description) ? @description.markdowned : false } | ||||
%></p> | ||||
|
r88 | |||
|
r19 | <p><label for="problem_url">URL</label><br/> | ||
<%= text_field 'problem', 'url' %></p> | ||||
|
r0 | <p><label for="problem_available">Available</label><br/> | ||
|
r8 | <%= select("problem","available",[['True',true],['False',false]]) %></p> | ||
|
r0 | <!--[eoform:problem]--> | ||