Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Created March 22, 2022 09:43
Show Gist options
  • Save NickDeckerDevs/c126f7cc6af674d8525379c9e0008d72 to your computer and use it in GitHub Desktop.
Save NickDeckerDevs/c126f7cc6af674d8525379c9e0008d72 to your computer and use it in GitHub Desktop.
hubl to query custom object and display results as a drop down in a form
{% set objects = crm_objects("condo_project") %}
<label for="condo-projects">Choose a project:</label>
<select name="condo-projects" id="condo-project">
{% for item in objects.results %}
<option value="{{ item.id }}">{{ item.name }}</option>
{% endfor %}
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment