Difference between revisions of "Template Page - HTML Template"

From SmartWiki
Jump to: navigation, search
m
m
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{UnderConstruction}}
+
{{Banner-UnderConstruction}}
  
The Template page is used to allow [[system administrator]]s to configure customized formatting for UTA records.
+
A Template page is used to allow [[System Administrator]]s to configure customized formatting for UTA records.
  
 
==Template Page Variables==
 
==Template Page Variables==
@STYLELINK@ - This will use the system CSS styles on the Template Page.
+
@STYLELINK@ - This will use the CSS styles for the root company on the Template Page.
  
 
@FORM@ - This will display the application form.
 
@FORM@ - This will display the application form.
Line 10: Line 10:
 
@appfields@ - This will display the application fields.
 
@appfields@ - This will display the application fields.
  
@fields@ - This will display the template fields.
+
@SUBMITONLY@ - This will display only the '''Submit''' button.
  
@SUBMITONLY@ - This will display only the 'Submit' button.
+
@SYSTEMBUTTONS@ - This displays the buttons for the current [[Status]] such as the default buttons for that [[Status]], and the [[Submit buttons]] created for that Status.
  
@SYSTEMBUTTONS@ - This displays all system buttons such as the defualt buttons from the [[Status]] setting, and the Submit buttons created for that Status.
+
@fields@ - This will display fields. ('''DEPRECATED?''')
  
@SUBMIT@ - This will display the 'Save' and 'Submit' buttons. (''DEPRECATED?'')
+
@SUBMIT@ - This will display the '''Save''' and '''Submit''' buttons. ('''DEPRECATED?''')
 +
 
 +
<pre>Note: If using SmartCheck Validation on a submit button you *must* use @SYSTEMBUTTONS@ to expose the button containing the validation.</pre>
  
 
==Example==
 
==Example==
Line 27: Line 29:
 
<html>
 
<html>
 
<head>
 
<head>
@STYLELINK@
+
<!-- Root company CSS styles link -->
 +
@STYLELINK@
 
</head>
 
</head>
 +
 
<body leftmargin=1 rightmargin=1 topmargin=1 bottommargin=1 marginheight=1 marginwidth=1>
 
<body leftmargin=1 rightmargin=1 topmargin=1 bottommargin=1 marginheight=1 marginwidth=1>
  
@FORM@
+
<!-- Fields start here -->
 
@appfields@
 
@appfields@
@fields@
+
 
@SUBMITONLY@
+
<!-- System buttons start here -->
 
@SYSTEMBUTTONS@
 
@SYSTEMBUTTONS@
 
  
 
</body>                                                 
 
</body>                                                 

Latest revision as of 15:13, 25 October 2017


Construction warning.png Please note that this page is currently under construction. There is more information to come.

A Template page is used to allow System Administrators to configure customized formatting for UTA records.

Template Page Variables

@STYLELINK@ - This will use the CSS styles for the root company on the Template Page.

@FORM@ - This will display the application form.

@appfields@ - This will display the application fields.

@SUBMITONLY@ - This will display only the Submit button.

@SYSTEMBUTTONS@ - This displays the buttons for the current Status such as the default buttons for that Status, and the Submit buttons created for that Status.

@fields@ - This will display fields. (DEPRECATED?)

@SUBMIT@ - This will display the Save and Submit buttons. (DEPRECATED?)

Note: If using SmartCheck Validation on a submit button you *must* use @SYSTEMBUTTONS@ to expose the button containing the validation.

Example


<html>
<head>
	<!-- Root company CSS styles link -->
	@STYLELINK@
</head>

<body leftmargin=1 rightmargin=1 topmargin=1 bottommargin=1 marginheight=1 marginwidth=1>

	<!-- Fields start here -->
	@appfields@

	<!-- System buttons start here -->
	@SYSTEMBUTTONS@

</body>                                                 

</html>