/home/edulekha/studygroup.edulekha.com/ow_plugins/forum/mobile/views/controllers/section_index.html
<div class="owm_forum_page owm_forum_section">
    <div class="owm_std_margin_bottom">
        <div class="owm_nav_cap owm_nav_cap_left_cont owm_nav_cap_right_cont owm_bg_color_3 owm_border clearfix">
            {if $canEdit}
                <a id="owm_forum_new_topic_link" href="#" class="owm_nav_left_item_add owm_float_right"></a>
            {else if $promotion.status == 'promoted'}
                <a id="owm_forum_new_topic_link" href="javascript://" class="owm_nav_left_item_add owm_float_right" onclick="OWM.error('{$promotion.msg|escape:quotes}');"></a>
            {/if}           
            <div class="owm_float_left">
                <a class="owm_nav_cap_left" href="{url_for_route for="forum-default"}"></a>
            </div>
            <h3>{$section->name}</h3>           
        </div>
        {component class="FORUM_MCMP_ForumSearch" scope="section" id="{$section->id}"}
        {component class="FORUM_MCMP_ForumSection" sectionId="{$section->id}"}
    </div>
</div>

{if $canEdit}
    {script}
        $("#owm_forum_new_topic_link").bind("click", function(e){
            e.preventDefault();
 
            // show the topic form
            OWM.ajaxFloatBox("FORUM_MCMP_ForumAddTopic", [], {
                "title" : "{text key='forum+create_new_topic'}"
            });
        });
    {/script}
{/if}