summaryrefslogtreecommitdiff
path: root/templates/view_xref_text.tpl
diff options
context:
space:
mode:
authorLester Caine <lsces@lsces.co.uk>2011-03-10 16:49:18 +0000
committerLester Caine <lsces@lsces.co.uk>2011-03-10 16:49:18 +0000
commit2268c66a7a7e1f4117c12190fa427df068b84750 (patch)
treeb43f90da935d1c88f849fc4e1df3302785f9280e /templates/view_xref_text.tpl
parente1c3f7ee10f35a903c5590ff26f517ab33e9c4e8 (diff)
downloadcontact-2268c66a7a7e1f4117c12190fa427df068b84750.tar.gz
contact-2268c66a7a7e1f4117c12190fa427df068b84750.tar.bz2
contact-2268c66a7a7e1f4117c12190fa427df068b84750.zip
Add simple text xref templates. xref_ext entry can handle up to 250 character strings
Diffstat (limited to 'templates/view_xref_text.tpl')
-rw-r--r--templates/view_xref_text.tpl58
1 files changed, 58 insertions, 0 deletions
diff --git a/templates/view_xref_text.tpl b/templates/view_xref_text.tpl
new file mode 100644
index 0000000..8a48b94
--- /dev/null
+++ b/templates/view_xref_text.tpl
@@ -0,0 +1,58 @@
+{strip}
+<div class="view contact_xref">
+ <div class="header">
+ <h1>{$xrefInfo.template_title|escape}: {$xref_title|escape} for {$title|escape}</h1>
+ </div>
+
+ <div class="body">
+ {legend legend="Contents"}
+ <div class="row">
+ {formlabel label="`$xrefInfo.template_title`" for="xkey_ext"}
+ {forminput}
+ {if $xrefInfo.xkey_ext }
+ {$xrefInfo.xkey_ext|escape}
+ {else}
+ Not yet set
+ {/if}
+ {formhelp note="`$xrefInfo.template_title` simple text entry."}
+ {/forminput}
+ </div>
+
+ <div class="row">
+ {formlabel label="`$xrefInfo.template_title` 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 `$xrefInfo.template_title` number 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 `$xrefInfo.template_title` number 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}