13 lines
549 B
Smarty
13 lines
549 B
Smarty
{extends file='Tpl:empty.tpl'}
|
|
{block name="pagetitle"}{/block}
|
|
{block name="content"}
|
|
<h1>{t}Helpdesk page{/t}</h1>
|
|
<p>{t}Upon request, please download and forward the following information to the support service:{/t}</p>
|
|
<div class="text-center mb-2">
|
|
<a href="{$request->current_url}?download" class="btn btn-primary">
|
|
<i class="fa fa-download" aria-hidden="true"></i>
|
|
{t}Download{/t}
|
|
</a>
|
|
</div>
|
|
<pre class="text-bg-light p-3 copyable">{include file="Tpl:support_info_content.tpl"}</pre>
|
|
{/block}
|