Sorry again - maybe I gave a particularly complex examples
On this page www.dorsetgolfleagues.co.uk there are 2 examples, one is "coded" and the other at the bottom is the Reports module with HTML visualiser
Using an example of the code you produced
<div>
<a href="/our-matches?TeamName=[TeamName]">[TeamName]</a>
</div>
I can add extra information e.g. points, captains name etc but as it's not in a table it formats to
<div>
<a href="/our-matches?TeamName=[TeamName]">[TeamName]</a>, [Points], [Captains Name]
</div>
but the format is
Arsenal, 25, Arsene Wenger
Liverpool, 23, John Smith
Totenham Hotspur, 16, Elvis Presley
rather than
Team |
Points |
Manager |
Arsenal |
25 |
Arsene Wenger |
Liverpool |
23 |
John Smith |
Totenham Hotspur |
16 |
Elvis Presley |
The format of the table is NOT important just the alignment would be key, even losing the headers would not be a particular issue
I've tried this as a solution which nearly works but every line of data has a heading row
<table>
<tbody>
<tr>
<td><a href="/performance?PlayerName=[PlayerName]">[PlayerName]</td>
<td>[Starting]</td>
<td>[Next Time]</td>
</tr>
</tbody>
</table>
Any thoughts?
Unlike the Dorset Golf Leagues site I need this for an expanding group of players, so the hard coded option doesn't work, if all else fails then then just the name linking to extra info will suffice.