New Request page

The New Request page template is rendered when a user navigates to https://{yoursubdomain}.zendesk.com/hc/{locale}/requests/new.

Available properties

You can use the following properties in the New Request page template.

NameTypeDescription
parentobjectA request object that represents a related closed request. It may or may not exist
promoted_articlesarrayAn array of promoted article objects
ticket_formsarrayAn array of ticket form objects
help_centerobjectA help_center object that holds information and settings about the current help center
settingsobjectA settings object with custom settings for the current theme
signed_inbooleanWhether the user is logged in or not
featured_postsarrayAn array of featured post objects

Available helpers

You can use the following helpers in this page template. You can also use any built-in helpers, global helpers, or global advanced helpers.

NameDescription
breadcrumbsBreadcrumbs for the Request List page. See breadcrumbs helper
follow_upLink to the parent request, if it exists. See follow_up helper
request_formThe request form. See request_form helper

Example

<nav class="sub-nav">  {{breadcrumbs}}  {{search}}</nav>
<h1 class="page-header">  {{t 'submit_a_request'}}  {{#if parent}}    <span class="follow-up-hint">      {{follow_up}}    </span>  {{/if}}</h1>
<div class="form">  {{request_form}}</div>