blob: 6e96c8192af1e377deed1c036b690224a6245131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
{strip}
<div class="view contact_xref">
<div class="header">
<h1>{tr}Contact Xref{/tr}: {$xref_title|escape} for {$title|escape}</h1>
</div>
<div class="body">
{legend legend="XRef Contents"}
<div class="row">
{formlabel label="Cross Reference Link" for="xref"}
{forminput}
{if $xrefInfo.xref}
{$xrefInfo.xref|escape}
{else}
{/if}
{formhelp note="Link to other contact/content entries."}
{/forminput}
</div>
<div class="row">
{formlabel label="Reference Key" for="xkey"}
{forminput}
{if $xrefInfo.xkey }
{$xrefInfo.xkey|escape}
{else}
{/if}
{formhelp note="ID Key use to access data in other systems identified by the xref type."}
{/forminput}
</div>
<div class="row">
{formlabel label="Reference Text" for="xkey_ext"}
{forminput}
{if $xrefInfo.xkey_ext }
{$xrefInfo.xkey_ext|escape}
{else}
{/if}
{formhelp note="Variable text element such as url or email address."}
{/forminput}
</div>
<div class="row">
{formlabel label="Reference Notes" for="data"}
{forminput}
{$xrefInfo.data|escape}
{formhelp note="Keep the text attached to reference items short and use comment records to add larger volumns of text. This should be reserved for simple notes such 'as use after 5PM' or the link."}
{/forminput}
</div>
{/legend}
{legend legend="Start and Stop Dates"}
<div class="row">
{formlabel label="Start Date" for=""}
{forminput}
{if $xrefInfo.ignore_start_date eq "y"}
No start date set
{else}
{$xrefInfo.start_date|bit_long_datetime}
{/if}
{formhelp note="This xref record becomes valid on this date."}
{/forminput}
</div>
<div class="row">
{formlabel label="End Date" for=""}
{forminput}
{if $xrefInfo.ignore_end_date eq "y"}
No end date set
{else}
{$xrefInfo.end_date|bit_long_datetime}
{/if}
{formhelp note="This xref record finishes on this date."}
{/forminput}
</div>
{/legend}
<a class="item" href="{$smarty.const.CONTACT_PKG_URL}index.php?content_id={$xrefInfo.content_id}">{tr}Return{/tr}</a>
</div><!-- end .body -->
</div><!-- end .article -->
{/strip}
|