rbi.page.title.1
rbi.page.title.2
an-error-occurred-while-processing-the-template
The following has evaluated to null or missing: ==> url [in template "20099#20125#146577" at line 257, column 88] ---- Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: ${url} [in template "20099#20125#146577" at line 257, column 86] ----
1<style>
2.faq-wrapper .notifications-row-wrapper.show-grid-view .grid-view-col .notification-row-each {
3 height:auto;
4}
5#_com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet_INSTANCE_sjsh_searchContainerTag{
6 display:none;
7 }
8.notification-date .tag-new {
9 display: inline-block;
10
11 }
12</style>
13<script>
14
15 $(document).ready(function () {
16$("#_com_liferay_portal_search_web_search_results_portlet_SearchResultsPortlet_INSTANCE_sjsh_searchContainerTag").hide();
17});
18</script>
19
20<#assign bankerDebtManagerToGovernmentList=[] />
21<#assign commercialBankingList=[] />
22<#assign coOperativeBaningList=[] />
23<#assign nonBankingList=[] />
24<#assign financialInclusionDevelopmentList=[] />
25<#assign financialMarketList=[] />
26<#assign foreignExchangeManagementList=[] />
27<#assign consumerEducationProtectionList=[] />
28<#assign issuerOfCurrencyList=[] />
29<#assign paymentAndSettlementSystemList=[] />
30<#assign researchList=[] />
31<#assign depositInsuranceAndCreditGuaranteeCorporationList=[] />
32<#assign othersList=[] />
33
34<#assign bankerDebtManagerToGovernmentTitle="" />
35<#assign commercialBankingTitle="" />
36<#assign coOperativeBaningTitle="" />
37<#assign nonBankingTitle="" />
38<#assign financialInclusionDevelopmentTitle="" />
39<#assign financialMarketTitle="" />
40<#assign foreignExchangeManagementTitle="" />
41<#assign consumerEducationProtectionTitle="" />
42<#assign issuerOfCurrencyTitle="" />
43<#assign paymentSettlementSystemTitle="" />
44<#assign researchTitle="" />
45<#assign depositInsuranceAndCreditGuaranteeCorporationTitle="" />
46<#assign othersTitle="" />
47
48<#assign currDate=.now?date />
49
50<#assign
51 AssetEntryLocalServiceUtil=serviceLocator.findService("com.liferay.asset.kernel.service.AssetEntryLocalService")
52 DLFileEntryLocalService=serviceLocator.findService("com.liferay.document.library.kernel.service.DLFileEntryLocalService")
53 AssetCategoryLocalService=serviceLocator.findService("com.liferay.asset.kernel.service.AssetCategoryLocalService")
54 AssetVocabularyLocalService=serviceLocator.findService("com.liferay.asset.kernel.service.AssetVocabularyLocalService")
55/>
56
57<#if entries?has_content>
58 <#list entries as curEntry>
59 <#assign assetEntry=AssetEntryLocalServiceUtil.fetchEntry(curEntry.getClassName(), curEntry.getClassPK()) />
60 <#if assetEntry.getClassName()=="com.liferay.journal.model.JournalArticle">
61 <#assign article=assetEntry.getAssetRenderer().getArticle() />
62 </#if>
63 <#assign assetCategories=assetEntry.getCategories() />
64 <#list assetCategories as assetCategory>
65 <#if assetCategory.getName()=="Commercial Banking">
66 <#assign commercialBankingList +=[curEntry]
67 commercialBankingTitle=assetCategory.getCategoryId() />
68 <#break>
69 <#elseif assetCategory.getName()=="Consumer Education and Protection">
70 <#assign consumerEducationProtectionList +=[curEntry]
71 consumerEducationProtectionTitle=assetCategory.getCategoryId() />
72 <#break>
73 <#elseif assetCategory.getName()=="Co-operative Banking">
74 <#assign coOperativeBaningList +=[curEntry]
75 coOperativeBaningTitle=assetCategory.getCategoryId() />
76 <#break>
77 <#elseif assetCategory.getName()=="Debt Management">
78 <#assign bankerDebtManagerToGovernmentList +=[curEntry]
79 bankerDebtManagerToGovernmentTitle=assetCategory.getCategoryId() />
80 <#break>
81 <#elseif assetCategory.getName()=="Deposit Insurance and Credit Guarantee Corporation">
82 <#assign depositInsuranceAndCreditGuaranteeCorporationList +=[curEntry]
83 depositInsuranceAndCreditGuaranteeCorporationTitle=assetCategory.getCategoryId() />
84 <#break>
85 <#elseif assetCategory.getName()=="Financial Inclusion and Development">
86 <#assign financialInclusionDevelopmentList +=[curEntry]
87 financialInclusionDevelopmentTitle=assetCategory.getCategoryId() />
88 <#break>
89 <#elseif assetCategory.getName()=="Financial Markets">
90 <#assign financialMarketList +=[curEntry]
91 financialMarketTitle=assetCategory.getCategoryId() />
92 <#break>
93 <#elseif assetCategory.getName()=="Foreign Exchange Management">
94 <#assign foreignExchangeManagementList +=[curEntry]
95 foreignExchangeManagementTitle=assetCategory.getCategoryId() />
96 <#break>
97 <#elseif assetCategory.getName()=="Issuer of Currency">
98 <#assign issuerOfCurrencyList +=[curEntry]
99 issuerOfCurrencyTitle=assetCategory.getCategoryId() />
100 <#break>
101
102 <#elseif assetCategory.getName()=="Non-banking">
103 <#assign nonBankingList +=[curEntry] nonBankingTitle=assetCategory.getCategoryId() />
104 <#break>
105 <#elseif assetCategory.getName()=="Others">
106 <#assign othersList +=[curEntry]
107 othersTitle=assetCategory.getCategoryId() />
108 <#break>
109 <#elseif assetCategory.getName()=="Payment and Settlement System">
110 <#assign paymentAndSettlementSystemList +=[curEntry]
111 paymentSettlementSystemTitle=assetCategory.getCategoryId() />
112 <#break>
113 <#elseif assetCategory.getName()=="Research">
114 <#assign researchList +=[curEntry]
115 researchTitle=assetCategory.getCategoryId() />
116 <#break>
117 </#if>
118 </#list>
119</#list>
120</#if>
121
122<#function getAsset currentEntry>
123 <#local assetEntry=AssetEntryLocalServiceUtil.fetchEntry(currentEntry.getClassName(),currentEntry.getClassPK()) />
124 <#if assetEntry.getClassName()=="com.liferay.journal.model.JournalArticle">
125 <#local article=assetEntry.getAssetRenderer().getArticle()>
126 </#if>
127 <#return article>
128</#function>
129
130
131
132
133<#assign listOfAllValues = {
134 bankerDebtManagerToGovernmentTitle : bankerDebtManagerToGovernmentList,
135 commercialBankingTitle :commercialBankingList,
136 consumerEducationProtectionTitle : consumerEducationProtectionList,
137 coOperativeBaningTitle :coOperativeBaningList,
138 depositInsuranceAndCreditGuaranteeCorporationTitle : depositInsuranceAndCreditGuaranteeCorporationList,
139 financialInclusionDevelopmentTitle : financialInclusionDevelopmentList,
140 financialMarketTitle : financialMarketList,
141 foreignExchangeManagementTitle : foreignExchangeManagementList,
142 issuerOfCurrencyTitle : issuerOfCurrencyList,
143 nonBankingTitle :nonBankingList,
144 othersTitle : othersList,
145 paymentSettlementSystemTitle : paymentAndSettlementSystemList,
146 researchTitle : researchList
147}>
148<#assign keys = listOfAllValues?keys>
149<#assign index = 0 />
150<div class="rbi-faqs-accordion-wrapper full-width">
151 <div class="container">
152 <div class="rbi-accordion rbi-forms-accordion">
153 <div class="expant-collapse-btn-wrapper">
154 <button id="openAll" class="open-all">
155 ${languageUtil.get(locale,"expand-all")}
156 </button>
157 <button id="closeAll" class="open-all" style="display: none;">
158 ${languageUtil.get(locale,"collapse-all")}
159 </button>
160 </div>
161 <!--Accordion-->
162 <!-- <div class="rbi-accordion"> -->
163
164 <div id="accordion">
165 <#list keys as key>
166 <#assign index = index + 1 />
167 <#if key != ''>
168 <div class="card collapsed-hover">
169 <div class="card-header" id="AccordionheadingOne">
170 <div class="mb-0 card-header-content position-relative">
171 <button class="btn btn-link accordion-title" data-toggle="collapse" data-target="#accordion-${index}" aria-expanded="true" aria-controls="accordion-${index}">
172 <span class="accordion-title-content font-resized">
173 <#assign AssertCategoty=AssetCategoryLocalService.fetchCategory(key?number)
174 AssertCategotyTitle=AssertCategoty.getTitle(locale)
175 AssertCategoryName=AssertCategoty.getName() />
176 <#if AssertCategoty.getName()=="Debt Management" >
177 ${languageUtil.get(locale,"banker-and-debt-manager-to-government")}
178 <#else>
179 ${AssertCategotyTitle}
180 </#if>
181 </span>
182 <span class="toogle-indicator"></span>
183 </button>
184 <div class="custom-tooltip" style="display: none;">
185 <div class="tooltip-arrow-up"></div>
186 <div class="tooltip-content"> <#assign AssertCategoty=AssetCategoryLocalService.fetchCategory(key?number)
187 AssertCategotyTitle=AssertCategoty.getTitle(locale)
188 AssertCategoryName=AssertCategoty.getName() />
189 <#if AssertCategoty.getName()=="Debt Management" >
190 ${languageUtil.get(locale,"banker-and-debt-manager-to-government")}
191 <#else>
192 ${AssertCategotyTitle}
193 </#if> </div>
194 </div>
195 </div>
196 </div>
197 <div id="accordion-${index}" class="collapse" aria-labelledby="AccordionheadingOne">
198 <div class="accrodion-content">
199 <div class="Notification-content-wrap full-width" tabindex="0">
200 <div class="container-fluid">
201 <div class="col-12">
202 <div class="notifications-row-wrapper">
203 <div class="row">
204 <#list listOfAllValues[key] as faqValue>
205 <#assign redirectURL=faqValue.getViewURL()?split('?')[0]
206 assetEntry=AssetEntryLocalServiceUtil.fetchEntry(faqValue.getClassName(), faqValue.getClassPK())
207 article=assetEntry.getAssetRenderer().getArticle()
208 content=saxReaderUtil.read(article.getContentByLocale(locale))
209 localeContent=saxReaderUtil.read(article.getContentByLocale('en_US'))
210 title=content.valueOf("//dynamic-element[@name='Text98851269' ]/dynamic-content")
211 titleWithoutLocale=localeContent.valueOf("//dynamic-element[@name='Text98851269' ]/dynamic-content")
212 page=content.valueOf("//dynamic-element[@name='SelectFromList52486135' ]/dynamic-content")
213 downloadURL=content.valueOf("//dynamic-element[@name='Upload16468397' ]/dynamic-content")
214 modifiedDate=content.valueOf("//dynamic-element[@name='Date33120032' ]/dynamic-content")
215 publishDate=assetEntry.publishDate
216 faqPublishDate = content.valueOf("//dynamic-element[@name='Date71867735' ]/dynamic-content")
217
218 />
219 <#assign modifiedDate = getterUtil.getString(content.valueOf("//dynamic-element[@name='Date33120032' ]/dynamic-content")) />
220 <#assign faqPublishDate = getterUtil.getString(content.valueOf("//dynamic-element[@name='Date33120032' ]/dynamic-content")) />
221 <div class="col-12 grid-view-col">
222 <div class="notification-row-each">
223 <div class="notification-row-each-inner">
224 <#if publishDate?has_content>
225 <div class="notification-date font-resized">
226 ${dateUtil.getDate(publishDate, "MMM dd, yyyy", locale)}
227 <#if validator.isNotNull(modifiedDate)>
228 <#assign modifiedDate_DateObj = dateUtil.parseDate("yyyy-MM-dd", modifiedDate, locale) />
229 <div class="tag-withdrawn-date tag-new tag-inline-flex">
230 <span> ${languageUtil.get(locale,"updated")} : ${dateUtil.getDate(modifiedDate_DateObj, "MMM dd, yyyy", locale)}</span>
231 </div>
232 </#if>
233 <#if currDate?string==publishDate?date?string>
234 <div class="tag-new">
235 <span>${languageUtil.get(locale,'new')}</span>
236 </div>
237 </#if>
238 </div>
239 </#if>
240 <!--Type 1- ddm__keyword__11489628__Faqdetailtitle_en_US
241 Type 2- ddm__keyword__11489722__Text88187957_en_US-->
242
243 <#if page == "Option68453029">
244 <#assign url="/web/rbi/faq-page-1?ddm__keyword__19506552__FaqDetailPage1Title_en_US="+titleWithoutLocale/>
245 </#if>
246 <#if page == "Option45450404">
247 <#assign url="/web/rbi/faq-page-2?ddm__keyword__26256231__FaqDetailPage2Title_en_US="+titleWithoutLocale/>
248 </#if>
249
250 <#if page == "Option94858029">
251 <#assign url="/web/rbi/faq-page-3?ddm__keyword__26261231__FaqDetailPage3Title_en_US="+titleWithoutLocale />
252 </#if>
253 <#if page == "Option12897622">
254 <#assign url="/web/rbi/faq-page-4?ddm__keyword__26245192__faqdetailpage4title_en_US="+titleWithoutLocale />
255 </#if>
256
257 <a href="${url}" class="mtm_list_item_heading truncatedContent">
258 <div class="mtm_list_item_heading truncatedContent notifications-heading c-tooltips position-relative pt-3 font-resized">
259 ${title}
260 </div>
261 </a>
262 <div class="custom-tooltip">
263 <div class="tooltip-arrow-up"></div>
264 <div class="tooltip-content">
265 ${title}
266 </div>
267 </div>
268 <#if downloadURL?has_content && downloadURL??>
269 <div class="">
270 <!-- <img src="/documents/70233/0/fileDownload.svg" class="downloadFile"
271 alt="Download File" data-toggle="rbi-tooltip" data-placement="auto" title="Download File" >
272
273 <span><a class="fileName" href="${downloadURL}" download>
274 PDF (0 KB)
275 </a></span>
276 -->
277 </div>
278 </#if>
279 </div>
280 </div>
281 </div>
282 </#list>
283 </div>
284 </div>
285 </div>
286 </div>
287 </div>
288 </div>
289 </div>
290 </div>
291 </#if>
292 </#list>
293 </div>
294
295 <!-- </div> -->
296 </div>
297 </div>
298 </div>
299</div>
પેજની છેલ્લી અપડેટની તારીખ:
શું આ પેજ ઉપયોગી હતું?