The Left Navigation will be used by both the Listing View and the Current Item view

Here is sample code for managing the left-side navigation:

CopyC#
<asp:Content ID="Content1" ContentPlaceHolderID="LeftNavigation" runat="server">

<%
    //Construct the navigation data
    var navData = Model.GenerateNavigationData("My Projects", Url);

    Html.CartellaRenderPartial("FolioModule/Navigation", navData);    
    %>

</asp:Content>

The only variable of note is the Title of the navigation block. Modify the variable or use the generic navigation, adding custom view or markup code as desired