What I'd love to be able to do is have a list of created forms in a select list so that my Custom Post Type can have a specific form assigned to it.
<select name="gform-list">
<option value="2">My Second Form</option>
<option value="6">Another Form</option>
<option value="7">Special Form</option>
</select>
So in this case, I can select a form (id) and render it within my Custom Post Type :)
gravity_form(6, false, false, false, '', false);