Book a Demo

Author Topic: Removing Diagram details from publishing  (Read 3007 times)

deniliquin

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Removing Diagram details from publishing
« on: June 26, 2019, 04:06:01 pm »
Good Afternoon All.

Is there a way to remove/stop diagram details from being included when creating a Standard HTML Report?   I'm using v13.

Thanks
Deni. 

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Removing Diagram details from publishing
« Reply #1 on: June 26, 2019, 05:08:54 pm »
You can edit the css templates. I'm sure it's in there somewhere.

Geert

Sunshine

  • EA Practitioner
  • ***
  • Posts: 1353
  • Karma: +121/-10
  • Its the results that count
    • View Profile
Re: Removing Diagram details from publishing
« Reply #2 on: June 30, 2019, 09:01:42 am »
Go to the resources and open web template. In there edit the "Body - Diagram" template. Remove the table tag and all its contents.

Code: [Select]
<div class="PageBody">
#IMAGE#
<div class="ObjectTitle">#NAME# : #TYPE# diagram</div>
----->START DELETE HERE
<table border="0" cellpadding="0" cellspacing="0" class="ObjectDetails">
<tr>
<td width="15%" class="ObjectDetailsTopic">Created:</td>
<td width="85%" class="ObjectDetailsValue">#CREATEDATE#</td>
</tr>
<tr>
<td width="15%" class="ObjectDetailsTopic">Modified:</td>
<td width="85%" class="ObjectDetailsValue">#MODDATE#</td>
</tr>
<tr style="padding-top: 10px;">
<td width="15%" class="ObjectDetailsTopic"><img src="#IMAGES#/plus03.gif" align="absmiddle" id="proj" onclick="parent.toggleData(this.id)" />Project:</td>
<td width="85%" class="ObjectDetailsValue"></td>
</tr>
<tr id="proj00" style="display: none;">
<td width="15%" class="ObjectDetailsTopic" style="padding-left: 18px;">Author:</td>
<td width="85%" class="ObjectDetailsValue">#AUTHOR#</td>
</tr>
<tr id="proj01" style="display: none;">
<td width="15%" class="ObjectDetailsTopic" style="padding-left: 18px;">Version:</td>
<td width="85%" class="ObjectDetailsValue">#VERSION#</td>
</tr>
<tr>
<td width="15%" class="ObjectDetailsTopic"><img src="#IMAGES#/plus03.gif" align="absmiddle" id="adv" onclick="parent.toggleData(this.id)" />Advanced:</td>
<td width="85%" class="ObjectDetailsValue"></td>
</tr>
<tr id="adv00" style="display: none;">
<td width="15%" class="ObjectDetailsTopic" style="padding-left: 18px;">ID:</td>
<td width="85%" class="ObjectDetailsValue">#GUID#</td>
</tr>
</table>
#NOTE#
----->END DELETE HERE
</div>
« Last Edit: June 30, 2019, 09:03:56 am by Sunshine »
Happy to help
:)