~eventum-developers/eventum/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{include file="header.tpl.html" extra_title=$extra_title}
{include file="navigation.tpl.html"}
<script type="text/javascript" src="{$rel_url}js/httpclient.js"></script>
<script type="text/javascript" src="{$rel_url}js/expandable_cell.js"></script>
{if $issue == ""}
  <table width="400" align="center">
    <tr>
      <td>
        &nbsp;<span class="default"><b>{t 1=$smarty.get.id}Error: The issue #%1 could not be found.{/t}</b>
        <br /><br />
        &nbsp;<a class="link" href="javascript:history.go(-1);">{t}Go Back{/t}</a></span>
      </td>
    </tr>
  </table>
{elseif $auth_customer == 'denied' OR $auth_user == 'denied'}
  <table width="500" align="center">
    <tr>
      <td>
        &nbsp;<span class="default"><b>{t}Sorry, you do not have the required privileges to view this issue.{/t}</b>
        <br /><br />
        &nbsp;<a class="link" href="javascript:history.go(-1);">{t}Go Back{/t}</a></span>
      </td>
    </tr>
  </table>
{else}
  {include file="view_form.tpl.html"}
  {if $custom_fields|@count > 0}
  <div class="view_issue_seperator"></div>
  {include file="custom_fields.tpl.html"}
  {/if}
  <div class="view_issue_seperator"></div>
  {if $has_customer_integration and $issue.iss_customer_id}
  {include file="customer/$customer_backend_name/customer_info.tpl.html"}
  <div class="view_issue_seperator"></div>
  {/if}
  {include file="attachments.tpl.html"}
  <div class="view_issue_seperator"></div>
  {if $current_role > $roles.customer and $app_setup.scm_integration == 'enabled'}
  {include file="checkins.tpl.html"}
  <div class="view_issue_seperator"></div>
  {/if}
  {if $current_role > $roles.customer}
  {include file="time_tracking.tpl.html"}
  <div class="view_issue_seperator"></div>
  {/if}
  {if $current_role > $roles.customer}
  {include file="notes.tpl.html"}
  <div class="view_issue_seperator"></div>
  {/if}
  {if $current_role > $roles.customer}
  {include file="phone_support.tpl.html"}
  <div class="view_issue_seperator"></div>
  {/if}
  {if $app_setup.support_email == 'enabled'}
    {if $current_role > $roles.customer}
      {include file="email_drafts.tpl.html"}
      <div class="view_issue_seperator"></div>
    {/if}
  {include file="support_emails.tpl.html"}
  {/if}
{/if}

{include file="app_info.tpl.html"}
{include file="footer.tpl.html"}