CRM
User Secure Zones
7min
outputting a user's secure zones can help them to keep track of services they're signed up to prerequisites this layout must be outputted inside a page protected by a secure zone you can use the following links to learn how to set up a secure page and the means to access it create a secure zone create a secure zone sign up form add a secure zone to a page introduction outputting a user's secure zones can help them to keep track of services they're signed up to syntax {% include 'user secure zones', layout 'default' %} parameters layout file structure you can find the user secure zones layouts at the following path in code editor layouts/modules/module 5/user secure zones/ inside this folder, a single liquid file can be created to act as your layout there is no "wrapper" and "item" file needed for this kind of layout developing the layout the loop you'll need to use a liquid for loop to loop over the records in this layout one of the benefits of this is that you can rename the variable under which your fields are kept if you like you can store the variables under the namespace "this" {% for this in secure zones %} form name {{this name}} {% endfor %} or, if you want to output the form submissions layout inside a user details layout for example, you can store the variables under a different namespace e g case and continue to use this to refer to the user details (liquid variables are always inherited by layouts included within them) {% for secure zone in secure zones %} user name {{this name}} form name {{secure zone name}} {% endfor %} available fields (within the loop) in the following examples, we'll use the namespace "secure zone", but you can substitute this for the namespace you chose when creating your loop {{secure zone name}} the user friendly name for this secure zone {{secure zone id}} the id of this secure zone