" class="collapse panel-body">
<%= renderXAttributes( path, 'h4' ) %>
Methods:
<%
_.each( httpMethodKeys, function( methodKey ){
if( typeof( path[ methodKey ] ) !== 'undefined' ){
var methodTemplate = _.template( $( "#method-template" ).html() );
%>
<%= methodTemplate(
{
"key":methodKey,
"method":path[ methodKey ]
}
) %>
<%
}
})
%>