Show
Ignore:
Timestamp:
10/03/07 16:02:07 (14 months ago)
Author:
aarkerio
Message:

Helps

Location:
trunk/app/views/questions
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/questions/admin_answers.thtml

    r157 r191  
    5959  $st = ($val["correct"]==1) ? 'Yes' : 'No';       
    6060    echo '<div style="padding:5px;border:1px dotted gray;margin:4px;">'; 
     61       echo '<div class="butonright">' . $html->link('Delete', '/admin/answers/delete/'.$val['id'].'/'.$val['question_id'])   . '</div>'; 
     62       echo '<div class="butonright">' . $html->link('Edit',   '/admin/answers/edit/'  .$val['id']) . '</div>'; 
    6163       echo "Answer: "      . $val["answer"]       . "<br />"; 
    6264       echo "Correct: "     . $st                  . "<br />"; 
  • trunk/app/views/questions/questions.thtml

    r137 r191  
    66    echo "Hint: "        . $val["Question"]["hint"]           . "<br />"; 
    77    echo "Explanation: " . $val["Question"]["explanation"]    . "<br />"; 
    8     echo "Worth: "       . $val["Question"]["value"]          . "<br /><br />"; 
     8    echo "Worth: "       . $val["Question"]["worth"]          . "<br /><br />"; 
    99    echo $html->link('View answers', '/admin/questions/answers/'.$val["Question"]["id"]) .'<br /><br />'; 
    1010}