Affichage d'une marque
This commit is contained in:
parent
75cc500dd1
commit
6b17a251b5
@ -1,7 +1,6 @@
|
||||
<div id="center">
|
||||
<h1 class="titre">PROPRIÉTÉ INTELLECTUELLE</h1>
|
||||
<div class="paragraph">
|
||||
<div class="paragraph">
|
||||
<table>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
@ -19,40 +18,54 @@
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if ($this->idObject!=0) { ?>
|
||||
|
||||
<?php $item = $this->marques[0]; ?>
|
||||
<h2>Marque déposée - détail</h2>
|
||||
<div class="paragraph">
|
||||
<?php //img ?>
|
||||
<p><strong>Type de Marque</strong> : <?=$item->Perimetre?></p>
|
||||
<p><strong>Marque</strong> : <?=$item->Marques?></p>
|
||||
<p><strong>Classification de Nice</strong> :
|
||||
<?php if (count($item->Classes)>0) {?>
|
||||
<?php $i=0; foreach ($item->Classes as $classe) {?>
|
||||
<?=$classe?>
|
||||
<?php $i++; if (count($item->classesMarque)<$i){?>;<?php }?>
|
||||
<p><strong>Classification de Nice</strong> : <?=$item->Classes?></p>
|
||||
<p><strong>Produits et Services</strong> :
|
||||
<?php if (count($item->ProduitsServices)>0) {?>
|
||||
<?php foreach ($item->ProduitsServices as $txt) {?>
|
||||
<?=$txt?><br/>
|
||||
<?php }?>
|
||||
<?php }?>
|
||||
</p>
|
||||
<?php //<p><strong>Produits et services</strong> :</p> ?>
|
||||
<p><strong>Déposant</strong> : <?=$item->Deposant?></p>
|
||||
<p><strong>Mandataire</strong> : <?=$item->Mandataire?></p>
|
||||
<p><strong>Numéro</strong> : <?=$item->Depot?></p>
|
||||
<p><strong>Statut</strong> : <?=$item->Statut?></p>
|
||||
<p><strong>Date de dépôt / Enregistrement</strong> : <?=$item->Date?></p>
|
||||
<p><strong>Lieu de dépôt</strong> : <?=$item->Lieu?></p>
|
||||
<?php //<p><strong>Historique</strong> :</p> ?>
|
||||
|
||||
<p><strong>Historique</strong> :
|
||||
<?php if (count($item->Historique)>0) {?>
|
||||
<?php foreach ($item->Historique as $txt) {?>
|
||||
<?=$txt?><br/>
|
||||
<?php }?>
|
||||
<?php }?>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<?php } else {?>
|
||||
|
||||
<h2>Marque(s) déposée(s)</h2>
|
||||
<style>
|
||||
table.data td { border-bottom:1px solid #ccc; padding:5px; }
|
||||
</style>
|
||||
<div class="paragraph">
|
||||
<table class="data">
|
||||
<?php if (count($this->marques)==0) { ?>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="550" colspan="3" class="StyleInfoLib">
|
||||
Aucune marque n'a été déposée par cette entreprise depuis 1982.
|
||||
</td>
|
||||
</tr>
|
||||
<?php } else {?>
|
||||
<?php foreach ($this->marques as $marque) { ?>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
@ -75,19 +88,11 @@ table.data td { border-bottom:1px solid #ccc; padding:5px; }
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
<?php if (count($this->marques)==0) { ?>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="550" colspan="3" class="StyleInfoLib">
|
||||
Aucune marque n'a été déposée par cette entreprise depuis 1982.
|
||||
</td>
|
||||
</tr>
|
||||
<?php }?>
|
||||
</table>
|
||||
<?php }?>
|
||||
|
||||
</div>
|
||||
|
||||
<?php }?>
|
||||
|
||||
<?=$this->render('cgu.phtml', $this->cgu)?>
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user