Menu nawigacji

Potwierdź dostawę towarów w aplikacji mobilnej SENT DOSTAWY

Potwierdź dostawę towarów w aplikacji mobilnej SENT DOSTAWY

Usługa skierowana jest do ciebie, jeśli jesteś podmiotem odbierającym paliwo opałowe, który zamyka zgłoszenie (potwierdza odbiór towaru).

Za pomocą aplikacji mobilnej SENT DOSTAWY potwierdzisz również z poziomu kierowcy dostawę paliwa opałowego.

Aplikację SENT DOSTAWY można pobrać z platform Google Play i App Store. Instrukcja obsługi Aplikacji mobilnej SENT Dostawy - plik pdf (1,93 MB).

Dostawę towaru objętego systemem SENT możesz również potwierdzić korzystając z usługi na PUESC poprzez formularz SENT_EDIT Uzupełnienie, aktualizacja, zamknięcie, anulowanie [SENT].

Pamiętaj! Informację o odbiorze towaru uzupełnij w zgłoszeniu SENT, w dniu dostarczenia towaru.

Usługa krok po kroku

Wystąpił błąd podczas przetwarzania szablonu.
The following has evaluated to null or missing:
==> serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.ServiceBusinessOrmLocalService")  [in template "20101#20127#500378306" at line 1, column 43]

----
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: #assign serviceBusinessOrmLocalServic...  [in template "20101#20127#500378306" at line 1, column 1]
----
1<#assign serviceBusinessOrmLocalService = serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.ServiceBusinessOrmLocalService") /> 
2<#assign systemOrmLocalService = serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.SystemOrmLocalService") /> 
3<#assign customId = randomNamespace + .vars['reserved-article-id'].data /> 
4 
5 
6<#assign journalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")> 
7<#assign currentJournalArticleEntry = journalArticleLocalService.getArticle(getterUtil.getLong(groupId), .vars['reserved-article-id'].data) /> 
8<#-- Save the original page locale for later --> 
9<#assign originalLocale = .locale> 
10 
11<#function getArticleLang > 
12    <#local firstLanguage = ''> 
13    <#list currentJournalArticleEntry.getAvailableLanguageIds() as item> 
14        <#if firstLanguage == ''> 
15            <#local firstLanguage = item> 
16        </#if> 
17        <#if item == originalLocale> 
18            <#return originalLocale?replace("_", "-")> 
19        </#if> 
20    </#list> 
21     
22    <#return firstLanguage?replace("_", "-")> 
23</#function> 
24<#if .vars['reserved-article-title'].data != "-"> 
25 
26	<script> 
27		$(function() { 
28			<#if IDKotwicy.getData() != ""> 
29			if (window.location.hash != "" && window.location.hash == "#${IDKotwicy.getData()}") { 
30				$($(window.location.hash + '>div').attr('data-target')).collapse('show'); 
31				$([document.documentElement, document.body]).animate({ 
32					scrollTop: $(window.location.hash).offset().top 
33				}, 1000); 
34
35			</#if> 
36			$("#${customId}").on('keypress', function(event) { 
37				if(event.which === 13 || event.keyCode === 13) { 
38					event.preventDefault(); 
39					$("#${customId}").click(); 
40
41			}); 
42			$("#${customId}").click(function () { 
43				if ($("#${customId}").attr("aria-expanded") == 'true') { 
44					$("#${customId}_arrow").removeClass("fa-chevron-up"); 
45					$("#${customId}_arrow").addClass("fa-chevron-down"); 
46				} else { 
47					$("#${customId}_arrow").removeClass("fa-chevron-down"); 
48					$("#${customId}_arrow").addClass("fa-chevron-up"); 
49
50			}); 
51		}); 
52	</script> 
53 
54 
55	<div <#if IDKotwicy.getData() != "">id="${IDKotwicy.getData()}"</#if> class="services-accordion"> 
56		<div id="${customId}" tabindex="0" class="d-flex justify-content-between border-bottom pb-1 faq-header collapsed" data-toggle="collapse" data-target=".${customId}_multi-collapse" 
57				 aria-expanded="false" role="button"> 
58			<h2>${.vars['reserved-article-title'].data}</h2> 
59			<i id="${customId}_arrow" class="toggle fa fa-chevron-down collapsed" data-toggle="collapse" data-target="#list-tab.0"></i> 
60		</div> 
61		<div id="${customId}_toggle" class="mt-2 row"> 
62			<div class="col"> 
63				<div class="post-content ${customId}_multi-collapse collapse"> 
64 
65					${html_content.getData()} 
66 
67					<#if tag.getData()?has_content> 
68						<#assign forms = serviceBusinessOrmLocalService.getServiceBusinessByTagName(tag.getData())!"" /> 
69						<#if forms?has_content> 
70							<hr /> 
71							<ul> 
72								<#list forms as form> 
73									<#assign system = systemOrmLocalService.fetchSystemOrm(form.systemId)!"" /> 
74 
75									<#if system?has_content> 
76										<li><a href="${form.url}?systemName=${system.name}&formName=${form.id}">${form.name}</a></li> 
77									</#if> 
78								</#list> 
79							</ul> 
80						</#if> 
81					</#if> 
82				</div> 
83			</div> 
84		</div> 
85	</div> 
86</#if> 

Co powinieneś wiedzieć

Wystąpił błąd podczas przetwarzania szablonu.
The following has evaluated to null or missing:
==> serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.ServiceBusinessOrmLocalService")  [in template "20101#20127#500378306" at line 1, column 43]

----
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: #assign serviceBusinessOrmLocalServic...  [in template "20101#20127#500378306" at line 1, column 1]
----
1<#assign serviceBusinessOrmLocalService = serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.ServiceBusinessOrmLocalService") /> 
2<#assign systemOrmLocalService = serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.SystemOrmLocalService") /> 
3<#assign customId = randomNamespace + .vars['reserved-article-id'].data /> 
4 
5 
6<#assign journalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")> 
7<#assign currentJournalArticleEntry = journalArticleLocalService.getArticle(getterUtil.getLong(groupId), .vars['reserved-article-id'].data) /> 
8<#-- Save the original page locale for later --> 
9<#assign originalLocale = .locale> 
10 
11<#function getArticleLang > 
12    <#local firstLanguage = ''> 
13    <#list currentJournalArticleEntry.getAvailableLanguageIds() as item> 
14        <#if firstLanguage == ''> 
15            <#local firstLanguage = item> 
16        </#if> 
17        <#if item == originalLocale> 
18            <#return originalLocale?replace("_", "-")> 
19        </#if> 
20    </#list> 
21     
22    <#return firstLanguage?replace("_", "-")> 
23</#function> 
24<#if .vars['reserved-article-title'].data != "-"> 
25 
26	<script> 
27		$(function() { 
28			<#if IDKotwicy.getData() != ""> 
29			if (window.location.hash != "" && window.location.hash == "#${IDKotwicy.getData()}") { 
30				$($(window.location.hash + '>div').attr('data-target')).collapse('show'); 
31				$([document.documentElement, document.body]).animate({ 
32					scrollTop: $(window.location.hash).offset().top 
33				}, 1000); 
34
35			</#if> 
36			$("#${customId}").on('keypress', function(event) { 
37				if(event.which === 13 || event.keyCode === 13) { 
38					event.preventDefault(); 
39					$("#${customId}").click(); 
40
41			}); 
42			$("#${customId}").click(function () { 
43				if ($("#${customId}").attr("aria-expanded") == 'true') { 
44					$("#${customId}_arrow").removeClass("fa-chevron-up"); 
45					$("#${customId}_arrow").addClass("fa-chevron-down"); 
46				} else { 
47					$("#${customId}_arrow").removeClass("fa-chevron-down"); 
48					$("#${customId}_arrow").addClass("fa-chevron-up"); 
49
50			}); 
51		}); 
52	</script> 
53 
54 
55	<div <#if IDKotwicy.getData() != "">id="${IDKotwicy.getData()}"</#if> class="services-accordion"> 
56		<div id="${customId}" tabindex="0" class="d-flex justify-content-between border-bottom pb-1 faq-header collapsed" data-toggle="collapse" data-target=".${customId}_multi-collapse" 
57				 aria-expanded="false" role="button"> 
58			<h2>${.vars['reserved-article-title'].data}</h2> 
59			<i id="${customId}_arrow" class="toggle fa fa-chevron-down collapsed" data-toggle="collapse" data-target="#list-tab.0"></i> 
60		</div> 
61		<div id="${customId}_toggle" class="mt-2 row"> 
62			<div class="col"> 
63				<div class="post-content ${customId}_multi-collapse collapse"> 
64 
65					${html_content.getData()} 
66 
67					<#if tag.getData()?has_content> 
68						<#assign forms = serviceBusinessOrmLocalService.getServiceBusinessByTagName(tag.getData())!"" /> 
69						<#if forms?has_content> 
70							<hr /> 
71							<ul> 
72								<#list forms as form> 
73									<#assign system = systemOrmLocalService.fetchSystemOrm(form.systemId)!"" /> 
74 
75									<#if system?has_content> 
76										<li><a href="${form.url}?systemName=${system.name}&formName=${form.id}">${form.name}</a></li> 
77									</#if> 
78								</#list> 
79							</ul> 
80						</#if> 
81					</#if> 
82				</div> 
83			</div> 
84		</div> 
85	</div> 
86</#if> 

Ile zapłacisz

Wystąpił błąd podczas przetwarzania szablonu.
The following has evaluated to null or missing:
==> serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.ServiceBusinessOrmLocalService")  [in template "20101#20127#500378306" at line 1, column 43]

----
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: #assign serviceBusinessOrmLocalServic...  [in template "20101#20127#500378306" at line 1, column 1]
----
1<#assign serviceBusinessOrmLocalService = serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.ServiceBusinessOrmLocalService") /> 
2<#assign systemOrmLocalService = serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.SystemOrmLocalService") /> 
3<#assign customId = randomNamespace + .vars['reserved-article-id'].data /> 
4 
5 
6<#assign journalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")> 
7<#assign currentJournalArticleEntry = journalArticleLocalService.getArticle(getterUtil.getLong(groupId), .vars['reserved-article-id'].data) /> 
8<#-- Save the original page locale for later --> 
9<#assign originalLocale = .locale> 
10 
11<#function getArticleLang > 
12    <#local firstLanguage = ''> 
13    <#list currentJournalArticleEntry.getAvailableLanguageIds() as item> 
14        <#if firstLanguage == ''> 
15            <#local firstLanguage = item> 
16        </#if> 
17        <#if item == originalLocale> 
18            <#return originalLocale?replace("_", "-")> 
19        </#if> 
20    </#list> 
21     
22    <#return firstLanguage?replace("_", "-")> 
23</#function> 
24<#if .vars['reserved-article-title'].data != "-"> 
25 
26	<script> 
27		$(function() { 
28			<#if IDKotwicy.getData() != ""> 
29			if (window.location.hash != "" && window.location.hash == "#${IDKotwicy.getData()}") { 
30				$($(window.location.hash + '>div').attr('data-target')).collapse('show'); 
31				$([document.documentElement, document.body]).animate({ 
32					scrollTop: $(window.location.hash).offset().top 
33				}, 1000); 
34
35			</#if> 
36			$("#${customId}").on('keypress', function(event) { 
37				if(event.which === 13 || event.keyCode === 13) { 
38					event.preventDefault(); 
39					$("#${customId}").click(); 
40
41			}); 
42			$("#${customId}").click(function () { 
43				if ($("#${customId}").attr("aria-expanded") == 'true') { 
44					$("#${customId}_arrow").removeClass("fa-chevron-up"); 
45					$("#${customId}_arrow").addClass("fa-chevron-down"); 
46				} else { 
47					$("#${customId}_arrow").removeClass("fa-chevron-down"); 
48					$("#${customId}_arrow").addClass("fa-chevron-up"); 
49
50			}); 
51		}); 
52	</script> 
53 
54 
55	<div <#if IDKotwicy.getData() != "">id="${IDKotwicy.getData()}"</#if> class="services-accordion"> 
56		<div id="${customId}" tabindex="0" class="d-flex justify-content-between border-bottom pb-1 faq-header collapsed" data-toggle="collapse" data-target=".${customId}_multi-collapse" 
57				 aria-expanded="false" role="button"> 
58			<h2>${.vars['reserved-article-title'].data}</h2> 
59			<i id="${customId}_arrow" class="toggle fa fa-chevron-down collapsed" data-toggle="collapse" data-target="#list-tab.0"></i> 
60		</div> 
61		<div id="${customId}_toggle" class="mt-2 row"> 
62			<div class="col"> 
63				<div class="post-content ${customId}_multi-collapse collapse"> 
64 
65					${html_content.getData()} 
66 
67					<#if tag.getData()?has_content> 
68						<#assign forms = serviceBusinessOrmLocalService.getServiceBusinessByTagName(tag.getData())!"" /> 
69						<#if forms?has_content> 
70							<hr /> 
71							<ul> 
72								<#list forms as form> 
73									<#assign system = systemOrmLocalService.fetchSystemOrm(form.systemId)!"" /> 
74 
75									<#if system?has_content> 
76										<li><a href="${form.url}?systemName=${system.name}&formName=${form.id}">${form.name}</a></li> 
77									</#if> 
78								</#list> 
79							</ul> 
80						</#if> 
81					</#if> 
82				</div> 
83			</div> 
84		</div> 
85	</div> 
86</#if> 

Niedostępność usługi, sytuacje awaryjne

Wystąpił błąd podczas przetwarzania szablonu.
The following has evaluated to null or missing:
==> serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.ServiceBusinessOrmLocalService")  [in template "20101#20127#500378306" at line 1, column 43]

----
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: #assign serviceBusinessOrmLocalServic...  [in template "20101#20127#500378306" at line 1, column 1]
----
1<#assign serviceBusinessOrmLocalService = serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.ServiceBusinessOrmLocalService") /> 
2<#assign systemOrmLocalService = serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.SystemOrmLocalService") /> 
3<#assign customId = randomNamespace + .vars['reserved-article-id'].data /> 
4 
5 
6<#assign journalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")> 
7<#assign currentJournalArticleEntry = journalArticleLocalService.getArticle(getterUtil.getLong(groupId), .vars['reserved-article-id'].data) /> 
8<#-- Save the original page locale for later --> 
9<#assign originalLocale = .locale> 
10 
11<#function getArticleLang > 
12    <#local firstLanguage = ''> 
13    <#list currentJournalArticleEntry.getAvailableLanguageIds() as item> 
14        <#if firstLanguage == ''> 
15            <#local firstLanguage = item> 
16        </#if> 
17        <#if item == originalLocale> 
18            <#return originalLocale?replace("_", "-")> 
19        </#if> 
20    </#list> 
21     
22    <#return firstLanguage?replace("_", "-")> 
23</#function> 
24<#if .vars['reserved-article-title'].data != "-"> 
25 
26	<script> 
27		$(function() { 
28			<#if IDKotwicy.getData() != ""> 
29			if (window.location.hash != "" && window.location.hash == "#${IDKotwicy.getData()}") { 
30				$($(window.location.hash + '>div').attr('data-target')).collapse('show'); 
31				$([document.documentElement, document.body]).animate({ 
32					scrollTop: $(window.location.hash).offset().top 
33				}, 1000); 
34
35			</#if> 
36			$("#${customId}").on('keypress', function(event) { 
37				if(event.which === 13 || event.keyCode === 13) { 
38					event.preventDefault(); 
39					$("#${customId}").click(); 
40
41			}); 
42			$("#${customId}").click(function () { 
43				if ($("#${customId}").attr("aria-expanded") == 'true') { 
44					$("#${customId}_arrow").removeClass("fa-chevron-up"); 
45					$("#${customId}_arrow").addClass("fa-chevron-down"); 
46				} else { 
47					$("#${customId}_arrow").removeClass("fa-chevron-down"); 
48					$("#${customId}_arrow").addClass("fa-chevron-up"); 
49
50			}); 
51		}); 
52	</script> 
53 
54 
55	<div <#if IDKotwicy.getData() != "">id="${IDKotwicy.getData()}"</#if> class="services-accordion"> 
56		<div id="${customId}" tabindex="0" class="d-flex justify-content-between border-bottom pb-1 faq-header collapsed" data-toggle="collapse" data-target=".${customId}_multi-collapse" 
57				 aria-expanded="false" role="button"> 
58			<h2>${.vars['reserved-article-title'].data}</h2> 
59			<i id="${customId}_arrow" class="toggle fa fa-chevron-down collapsed" data-toggle="collapse" data-target="#list-tab.0"></i> 
60		</div> 
61		<div id="${customId}_toggle" class="mt-2 row"> 
62			<div class="col"> 
63				<div class="post-content ${customId}_multi-collapse collapse"> 
64 
65					${html_content.getData()} 
66 
67					<#if tag.getData()?has_content> 
68						<#assign forms = serviceBusinessOrmLocalService.getServiceBusinessByTagName(tag.getData())!"" /> 
69						<#if forms?has_content> 
70							<hr /> 
71							<ul> 
72								<#list forms as form> 
73									<#assign system = systemOrmLocalService.fetchSystemOrm(form.systemId)!"" /> 
74 
75									<#if system?has_content> 
76										<li><a href="${form.url}?systemName=${system.name}&formName=${form.id}">${form.name}</a></li> 
77									</#if> 
78								</#list> 
79							</ul> 
80						</#if> 
81					</#if> 
82				</div> 
83			</div> 
84		</div> 
85	</div> 
86</#if> 

Podstawy prawne

Wystąpił błąd podczas przetwarzania szablonu.
The following has evaluated to null or missing:
==> serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.ServiceBusinessOrmLocalService")  [in template "20101#20127#500378306" at line 1, column 43]

----
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: #assign serviceBusinessOrmLocalServic...  [in template "20101#20127#500378306" at line 1, column 1]
----
1<#assign serviceBusinessOrmLocalService = serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.ServiceBusinessOrmLocalService") /> 
2<#assign systemOrmLocalService = serviceLocator.findService("pl.gov.mf.kud.seap.lf.sbl.seap.service.SystemOrmLocalService") /> 
3<#assign customId = randomNamespace + .vars['reserved-article-id'].data /> 
4 
5 
6<#assign journalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")> 
7<#assign currentJournalArticleEntry = journalArticleLocalService.getArticle(getterUtil.getLong(groupId), .vars['reserved-article-id'].data) /> 
8<#-- Save the original page locale for later --> 
9<#assign originalLocale = .locale> 
10 
11<#function getArticleLang > 
12    <#local firstLanguage = ''> 
13    <#list currentJournalArticleEntry.getAvailableLanguageIds() as item> 
14        <#if firstLanguage == ''> 
15            <#local firstLanguage = item> 
16        </#if> 
17        <#if item == originalLocale> 
18            <#return originalLocale?replace("_", "-")> 
19        </#if> 
20    </#list> 
21     
22    <#return firstLanguage?replace("_", "-")> 
23</#function> 
24<#if .vars['reserved-article-title'].data != "-"> 
25 
26	<script> 
27		$(function() { 
28			<#if IDKotwicy.getData() != ""> 
29			if (window.location.hash != "" && window.location.hash == "#${IDKotwicy.getData()}") { 
30				$($(window.location.hash + '>div').attr('data-target')).collapse('show'); 
31				$([document.documentElement, document.body]).animate({ 
32					scrollTop: $(window.location.hash).offset().top 
33				}, 1000); 
34
35			</#if> 
36			$("#${customId}").on('keypress', function(event) { 
37				if(event.which === 13 || event.keyCode === 13) { 
38					event.preventDefault(); 
39					$("#${customId}").click(); 
40
41			}); 
42			$("#${customId}").click(function () { 
43				if ($("#${customId}").attr("aria-expanded") == 'true') { 
44					$("#${customId}_arrow").removeClass("fa-chevron-up"); 
45					$("#${customId}_arrow").addClass("fa-chevron-down"); 
46				} else { 
47					$("#${customId}_arrow").removeClass("fa-chevron-down"); 
48					$("#${customId}_arrow").addClass("fa-chevron-up"); 
49
50			}); 
51		}); 
52	</script> 
53 
54 
55	<div <#if IDKotwicy.getData() != "">id="${IDKotwicy.getData()}"</#if> class="services-accordion"> 
56		<div id="${customId}" tabindex="0" class="d-flex justify-content-between border-bottom pb-1 faq-header collapsed" data-toggle="collapse" data-target=".${customId}_multi-collapse" 
57				 aria-expanded="false" role="button"> 
58			<h2>${.vars['reserved-article-title'].data}</h2> 
59			<i id="${customId}_arrow" class="toggle fa fa-chevron-down collapsed" data-toggle="collapse" data-target="#list-tab.0"></i> 
60		</div> 
61		<div id="${customId}_toggle" class="mt-2 row"> 
62			<div class="col"> 
63				<div class="post-content ${customId}_multi-collapse collapse"> 
64 
65					${html_content.getData()} 
66 
67					<#if tag.getData()?has_content> 
68						<#assign forms = serviceBusinessOrmLocalService.getServiceBusinessByTagName(tag.getData())!"" /> 
69						<#if forms?has_content> 
70							<hr /> 
71							<ul> 
72								<#list forms as form> 
73									<#assign system = systemOrmLocalService.fetchSystemOrm(form.systemId)!"" /> 
74 
75									<#if system?has_content> 
76										<li><a href="${form.url}?systemName=${system.name}&formName=${form.id}">${form.name}</a></li> 
77									</#if> 
78								</#list> 
79							</ul> 
80						</#if> 
81					</#if> 
82				</div> 
83			</div> 
84		</div> 
85	</div> 
86</#if> 

Pomoc - Help Desk i FAQ

article-publish-info

article-last-update: 12.06.2024 13:38 Monika Damentko
article-first-publication: 23.09.2021 14:37 Anna Chełminiak-Przykaza