diff --git a/application/views/customer/overview-tabs/overview.phtml b/application/views/customer/overview-tabs/overview.phtml
index b111fe6be..24d7721fb 100644
--- a/application/views/customer/overview-tabs/overview.phtml
+++ b/application/views/customer/overview-tabs/overview.phtml
@@ -23,16 +23,22 @@
Abreviated Name |
{$cust->getAbbreviatedName()} |
- RS Client
-
- AS112
+ {if not $cust->isTypeAssociate()}
+ RS Client
+
+ AS112
+ {/if}
|
Corporate Site |
{$cust->getCorpwww()} |
- Peering Email |
- {if $cust->getpeeringemail()}{mailto address=$cust->getpeeringemail()}{/if} |
+ {if $cust->isTypeAssociate()}
+ |
+ {else}
+ Peering Email |
+ {if $cust->getpeeringemail()}{mailto address=$cust->getpeeringemail()}{/if} |
+ {/if}
Status |
@@ -46,7 +52,7 @@
Left |
{if $cust->hasLeft()}{$cust->getDateleave()->format( 'Y-m-d' )}{/if} |
- {if $cust->getType() neq CUSTOMER::TYPE_ASSOCIATE}
+ {if not $cust->isTypeAssociate()}
Peering Policy |
{$cust->getPeeringpolicy()} |
@@ -82,9 +88,9 @@
{/if}
- {if $cust->getType() neq CUSTOMER::TYPE_ASSOCIATE}NOC Details{/if} |
+ {if not $cust->isTypeAssociate()}NOC Details{/if} |
- {if $cust->getType() neq CUSTOMER::TYPE_ASSOCIATE}
+ {if not $cust->isTypeAssociate()}
{if $cust->getNochours()} {$cust->getNochours()} {/if}
{if $cust->getNocemail()} {mailto address=$cust->getNocemail()} {/if}
{if $cust->getNocwww()} {$cust->getNocwww()} {/if}
@@ -98,5 +104,3 @@
-
-
|