We unfortunately can't glue a model in the view here. Here's what the code would look like if we could!
Create Recipe Form
{% csrf_token %}
{% include 'django_glue/form/glue_field/char_field.html' with glue_field='name' %}
{% include 'django_glue/form/glue_field/select_field.html' with glue_field='course' %}
{% include 'django_glue/form/glue_field/text_field.html' with glue_field='description' %}
{% include 'django_glue/form/glue_field/number_field.html' with glue_field='prep_time' %}
{% include 'django_glue/form/glue_field/number_field.html' with glue_field='servings' %}
{% include 'core/form/button/form_submit_button.html' %}