| 58 | | function job_show($job, $inst, $user) { |
| 59 | | $info = $job->get_info($job); |
| 60 | | $path = $info->path; |
| 61 | | page_head("Find the Ellipse"); |
| 62 | | echo " |
| 63 | | <form method=get action=bossa_job_finished.php> |
| 64 | | Click on the center of the ellipse. |
| 65 | | If you don't see one, click here: |
| 66 | | <input type=submit name=submit value=None> |
| 67 | | <br><br> |
| 68 | | <input type=hidden name=bji value=$inst->id> |
| 69 | | <input type=image name=pic src=$path> |
| 70 | | </form> |
| 71 | | "; |
| 72 | | page_tail(); |
| 73 | | } |
| | 58 | 9 function job_show($job, $inst, $user) { |
| | 59 | 10 $info = $job->get_info($job); |
| | 60 | 11 $path = $info->path; |
| | 61 | 12 page_head("Find the Ellipse"); |
| | 62 | 13 echo " |
| | 63 | 14 <form method=get action=bossa_job_finished.php> |
| | 64 | 15 Click on the center of the ellipse. |
| | 65 | 16 If you don't see one, click here: |
| | 66 | 17 <input type=submit name=submit value=None> |
| | 67 | 18 <br><br> |
| | 68 | 19 <input type=hidden name=bji value=$inst->id> |
| | 69 | 20 <input type=image name=pic src=$path> |
| | 70 | 21 </form> |
| | 71 | 22 "; |
| | 72 | 23 page_tail(); |
| | 73 | 24 } |
| | 74 | |