Project Claire: activityL.html
From PikaDocs
Last modified: August 8, 2005
<!-- activityL.html = MSR data entry subtemplate -->
<h2 class="full-width">New MSR Data</h2>
<form action="%%[form_action]%%" name="ea" method="post">
<!-- start date ... end date ... measured # ... estimated # ... media/PSAs -->
<div class="msr-data01">
%%[owner_menu]%%
<br />
Hours<br />
<input type="text" name="hours" value="%%[hours]%%" size="8" tabindex="1" />
<br />
<div class="msr-checkbox">%%[completed,yes_no,checkbox]%% Completed?</div>
<div class="msr-hr"></div> <!-- horizontal rule -->
Start Date<br />
<input type="text" name="act_date" value="%%[act_date]%%" size="16" tabindex="1" />
<br />
End Date<br />
<input type="text" name="" value="%%[act_date]%%" size="16" tabindex="1" />
<div class="msr-hr"></div> <!-- horizontal rule -->
Measured<br />
<input type="text" name="ph_measured" value="%%[ph_measured]%%" size="16" maxlength="5" tabindex="1" />
<br />
Estimated<br />
<input type="text" name="ph_estimated" value="%%[ph_estimated]%%" size="16" maxlength="5" tabindex="1" />
<br />
Media | PSAs<br />
<input type="text" name="media_items" value="%%[media_items]%%" size="16" maxlength="5" tabindex="1" />
</div>
<!-- notes fields ... service provided ... LSC problem code -->
<div class="msr-notes">
Summary | Title<br />
<input type="text" name="summary" value="%%[summary]%%" tabindex="1" />
<br/>
Estimate Narrative<br />
<textarea id="msr-narrative" name="estimate_notes" cols="" rows="" tabindex="1">%%[estimate_notes]%%</textarea>
<br />
Service Provided<br />
%%[om_code,lsc_other_matters]%%<br />
LSC Problem Code<br />
%%[problem,problem]%%
</div>
<div class="time-slip02" id="msr-funding">
Funding 01<br />
%%[funding,funding]%%<br />
Funding 02<br />
%%[funding1,funding1]%%<br />
Funding 03<br />
%%[funding2,funding2]%%<br />
Funding 04<br />
%%[funding3,funding3]%%
</div>
<div id="submit-buttons">
<input class="button initial-intake" type="hidden" name="action" value="%%[action_name]%%" />
<input type="hidden" name="act_url" value="%%[act_url]%%" />
<input type="hidden" name="act_type" value="L" />
<input type="hidden" name="act_id" value="%%[act_id]%%" />
%%[submit_button]%%
<!-- see hacks in activity.php at line 162 for button image substitution -->
</div>
</form>
<!-- Scripts -->
<script type="text/javascript">
<!--
document.ea.act_date.focus();
//-->
</script>
<script type="text/javascript">
<!--
function no_op()
{
return;
}
function AddTag(tag)
{
document.ea.notes.value=document.ea.notes.value+tag;
document.ea.notes.focus();
return;
}
function set_fund(val)
{
if (document.ea.funding.value == "")
{
document.ea.funding.value = val;
}
else
if (document.ea.funding.value != val)
{
if (confirm('Would you like to update the funding code to match this new case?'))
{
document.ea.funding.value = val;
}
}
return;
}
//-->
</script>
Related articles and files:

