Intermediaries

An error occurred while processing the template.
Template inclusion failed (for parameter value "_TEMPLATE_CONTEXT_/37301/37341/20097/NAVIGATION-MACRO-FTL"):
Unable to find FreeMarker template with ID _TEMPLATE_CONTEXT_/37301/37341/20097/NAVIGATION-MACRO-FTL

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #include "${templatesPath}/NAVIGATION...  [in template "37301#37343#503003" at line 5, column 1]
----
1<div class="container-fluid"> 
2<div class="row responsive"> 
3                    <div class="col-lg-12 pb-4 side-nav  print-exclude"> 
4                     <p class="back pt-3"><a href="javascript:history.go(-1);"><img src="/o/irdai-theme/images/svg/icons/back-cta-chevron.svg" alt="back" title="back"> Back</a></p> 
5<#include "${templatesPath}/NAVIGATION-MACRO-FTL" /> 
6 
7<#if !entries?has_content> 
8	<#if themeDisplay.isSignedIn()> 
9		<div class="alert alert-info"> 
10			<@liferay.language key="there-are-no-menu-items-to-display" /> 
11		</div> 
12	</#if> 
13<#else> 
14	<#assign 
15		portletDisplay = themeDisplay.getPortletDisplay() 
16 
17		navbarId = "navbar_" + portletDisplay.getId() 
18	/> 
19 
20	<div id="${navbarId}"> 
21		<div aria-label="<@liferay.language key="site-pages" />" class="nav navbar-nav navbar-site claim-menu-list show" role="menubar"> 
22			<#assign navItems = entries /> 
23			 
24 
25 
26			<#list navItems as navItem> 
27				<#assign showChildrenNavItems = (displayDepth != 1) && navItem.hasBrowsableChildren() /> 
28 
29				<#if navItem.isBrowsable() || showChildrenNavItems> 
30					<#assign 
31						nav_item_attr_has_popup = "" 
32						nav_item_caret = "" 
33						nav_item_css_class = "lfr-nav-item nav-item" 
34						nav_item_href_link = "" 
35						nav_item_link_css_class = "nav-link text-truncate" 
36					/> 
37 
38					<#if showChildrenNavItems> 
39						<#assign nav_item_attr_has_popup = "aria-haspopup='true'" /> 
40						<#assign nav_item_caret> 
41							<span class="lfr-nav-child-toggle px-1 ml-auto"> 
42								<@clay["icon"] symbol="angle-right" /> 
43							</span> 
44						</#assign> 
45						<#assign 
46							nav_item_css_class = "${nav_item_css_class} dropdown" 
47							nav_item_link_css_class = "${nav_item_link_css_class} dropdown-toggle" 
48						/> 
49					</#if> 
50 
51					<#if navItem.isBrowsable()> 
52						<#assign nav_item_href_link = "href='${navItem.getURL()}'" /> 
53					</#if> 
54 
55					<#if navItem.isChildSelected() || navItem.isSelected()> 
56						<#assign 
57							nav_item_css_class = "${nav_item_css_class} selected active" 
58						/> 
59					</#if> 
60 
61					<p class="${nav_item_css_class} text-wrap" id="layout_${portletDisplay.getId()}_${navItem.getLayoutId()}" role="presentation"> 
62						<a aria-labelledby="layout_${portletDisplay.getId()}_${navItem.getLayoutId()}" ${nav_item_attr_has_popup} ${nav_item_href_link} ${navItem.getTarget()} role="menuitem" class="text-truncate"> 
63							<span class="text-truncate"><@liferay_theme["layout-icon"] layout=navItem.getLayout() /> ${navItem.getName()} </span> 
64						</a> 
65						${nav_item_caret} 
66</p> 
67						<#if showChildrenNavItems> 
68					 
69							<ul class="claim-list"> 
70								<@buildChildrenNavItems2 
71									displayDepth=displayDepth 
72									navItem=navItem 
73								/> 
74								 
75							</ul> 
76						</#if> 
77					 
78					 
79				</#if> 
80			</#list> 
81			 
82		        
83                  
84			 
85		</div> 
86	</div> 
87	 
88	<#macro buildChildrenNavItems2 
89    	displayDepth 
90    	navItem 
91    	navItemLevel = 2 
92
93    	<#assign 
94    		portletDisplay = themeDisplay.getPortletDisplay() 
95    	/> 
96     
97    	<#list navItem.getChildren() as childNavigationItem> 
98    		<#assign 
99    			nav_child_css_class = "" 
100    			nav_item_caret = "" 
101    			sub_menu_heading_css_class = "" 
102    		/> 
103     
104    		<#if childNavigationItem.isChildSelected() || childNavigationItem.isSelected()> 
105    			<#assign 
106    				nav_child_css_class = "active selected" 
107    			/> 
108    		</#if> 
109    		 
110    		<#if childNavigationItem.hasBrowsableChildren() && ((displayDepth == 0) || (navItemLevel < displayDepth))> 
111    			<#assign nav_item_caret> 
112							<span <span class="lfr-nav-child-toggle px-1 ml-auto float-right"> 
113								<@clay["icon"] symbol="angle-right" /> 
114							</span> 
115						</#assign> 
116    			 
117    		</#if> 
118     
119    		<li class="${nav_child_css_class} text-wrap" id="layout_${portletDisplay.getId()}_${childNavigationItem.getLayoutId()}" role="presentation"> 
120    			<#if childNavigationItem.isBrowsable()> 
121    				<a aria-labelledby="layout_${portletDisplay.getId()}_${childNavigationItem.getLayoutId()}" href="${childNavigationItem.getURL()}" ${childNavigationItem.getTarget()} role="menuitem"> ${childNavigationItem.getName()} 
122    					  
123    				</a> 
124					${nav_item_caret} 
125    			<#else> 
126    				<a href="javascript:void(0)"> ${childNavigationItem.getName()}</a> 
127    			</#if> 
128    			</li> 
129    			<#if childNavigationItem.hasBrowsableChildren() && ((displayDepth == 0) || (navItemLevel < displayDepth))> 
130	    			<ul class="claim-list"> 
131	    				<@buildChildrenNavItems2 
132	    					displayDepth=displayDepth 
133	    					navItem=childNavigationItem 
134	    					navItemLevel=(navItemLevel + 1) 
135	    				/> 
136	    			</ul> 
137	    		</#if> 
138    		 
139    	</#list> 
140    </#macro> 
141	 
142 
143 
144	<@liferay_aui.script use="liferay-navigation-interaction"> 
145		var navigation = A.one('#${navbarId}'); 
146 
147		Liferay.Data.NAV_INTERACTION_LIST_SELECTOR = '.navbar-site'; 
148		Liferay.Data.NAV_LIST_SELECTOR = '.navbar-site'; 
149 
150		if (navigation) { 
151			navigation.plug(Liferay.NavigationInteraction); 
152
153	</@> 
154</#if> 
155 </div> 
156  </div> 
157  </div> 

Functions & Responsibilities of Brokers Department

The main functions of the Insurance Brokers Department are as follows.

  • Licensing:
    • Registration, processing of fresh applications and on being satisfied that the applicant fulfills all the conditions specified for the grant of license, issues the license for a period of three years.
    • Processing of renewal applications and on being satisfied that the applicant fulfills all the conditions specified for a renewal of the license, renew the license for a period of three years.
    • Processing of applications for change in category of license and grant license for any other category on fulfilling the requirements of the regulations.
  • Post Licensing matters:
    • Processing of proposals relating to change in shareholding, opening of branches, FDI limits, change of address, change of name, reissuing of FDR's, surrender of licenses, issues arising out of analysis of annual audited accounts etc.,
  • Inspection Reports/Complaints/Grievances:
    • Analysis of inspection reports, communication of findings, scrutiny of replies, execution of action on non-compliance matters/violations of regulations.
    • Processing of complaints, investigations, and enquiries
    • Attending to the grievances filed by brokers /against brokers on various matters
  • Misc. Matters:
    • Attending to issues of Insurance Brokers Association of India (IBAI)
    • Updating the list of Brokers every quarter on IRDA website
    • Preparing replies to letters from Ministry and Government organizations, parliament questions, enquiries of other regulators, RBI, SEBI etc.,
Norms and time limits for undertaking activities

The norms and time limits are not formally formulated.