[Logicampus-cvs] logicampus/src/logicreate/services/lobrepo/templates add_activity.html, 1.3, 1.4
Brought to you by:
trilexcom
From: Mark K <har...@us...> - 2007-10-08 22:18:57
|
Update of /cvsroot/logicampus/logicampus/src/logicreate/services/lobrepo/templates In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv12260/templates Modified Files: add_activity.html edit_main.html Log Message: Edit notes on any lob. Edit most of an activity. Index: add_activity.html =================================================================== RCS file: /cvsroot/logicampus/logicampus/src/logicreate/services/lobrepo/templates/add_activity.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** add_activity.html 5 Oct 2007 21:35:48 -0000 1.3 --- add_activity.html 8 Oct 2007 22:18:54 -0000 1.4 *************** *** 17,21 **** <tr> <td valign="top" class="row1">*Title</td> ! <td valign="top" class=""><input type="text" id="title" name="title" value="" size="40" maxlength="50"></td> </tr> --- 17,21 ---- <tr> <td valign="top" class="row1">*Title</td> ! <td valign="top" class=""><input type="text" id="title" name="title" value="<?= $t['lob']->repoObj->lobTitle;?>" size="40" maxlength="50"></td> </tr> *************** *** 23,27 **** <td valign="top" class="row1" valign="top">*Instructions for students</td> <td valign="top" class=""> ! <textarea name="instructions" cols="40" rows="5" id="instructions"></textarea> </td> </tr> --- 23,27 ---- <td valign="top" class="row1" valign="top">*Instructions for students</td> <td valign="top" class=""> ! <textarea name="instructions" cols="40" rows="5" id="instructions"><?= $t['lob']->repoObj->lobDescription;?></textarea> </td> </tr> *************** *** 30,34 **** <td valign="top" class="row1" valign="top">Notes (only for faculty)</td> <td valign="top" class=""> ! <textarea name="notes" cols="40" rows="5" id="notes"></textarea> </td> </tr> --- 30,34 ---- <td valign="top" class="row1" valign="top">Notes (only for faculty)</td> <td valign="top" class=""> ! <textarea name="notes" cols="40" rows="5" id="notes"><?= $t['lob']->repoObj->lobNotes;?></textarea> </td> </tr> Index: edit_main.html =================================================================== RCS file: /cvsroot/logicampus/logicampus/src/logicreate/services/lobrepo/templates/edit_main.html,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** edit_main.html 27 Sep 2007 20:37:49 -0000 1.11 --- edit_main.html 8 Oct 2007 22:18:54 -0000 1.12 *************** *** 99,101 **** Enter notes about this object for other faculty members to see. <br/> ! <textarea rows="15" cols="80"></textarea> --- 99,107 ---- Enter notes about this object for other faculty members to see. <br/> ! ! <form method="POST" action="<?=appurl('lobrepo/edit/event=notes/');?>"> ! <textarea rows="15" cols="80" id="lob_notes" name="lob_notes"><?=$lob->repoObj->lobNotes;?></textarea> ! <br/> ! <input type="hidden" name="id" value="<?=$lob->getRepoId();?>"/> ! <input type="submit" id="sbmt_button2" name="sbmt_button2" value="Change the notes."/> ! </form> |