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
|
<html>
<head>
<title>Table</title>
</head>
<body>
{%header:Summary%}
<br><br>
<font size=+2>{%object_name%}</font><br>
Owner: {%owner_name%}<br>
{%object_description%} {%NotSystem:[<a
href="fr://edit_description?parent_window={%parent_window%}&object_address={%object_address%}&object_type=TABLE&object_name={%object_name%}">edit</a>]
%}
<br><br>
<table cellspacing=1 cellpadding=2 border=0 bgcolor=black>
<tbody>
<tr bgcolor="navy">
{%NotSystem:
<td></td>
%}
<td><b><font color=white>Field</font></b></td>
<td><b><font color=white>Type</font></b></td>
<td><b><font color=white>NULL</font></b></td>
{%show_if_config:DisplayColumnDefault:true:
<td><b><font color=white>Default</font></b></td>%}
{%show_if_config:DisplayColumnDescription:true:
<td><b><font color=white>Description</font></b></td>%}
</tr>
{%columns:
<tr bgcolor="{%varcolor:#DDDDFF/#CCCCFF%}">
{%ParentNotSystem:
<td valign="top" nowrap>
<a href="fr://drop_field?parent_window={%parent_window%}&object_address={%object_address%}"><img src="{%fr_home%}/html-templates/drop.png"></a>
<a href="fr://edit_field?parent_window={%parent_window%}&object_address={%object_address%}"><img src="{%fr_home%}/html-templates/view.png"></a>
</td>
%}
<td nowrap valign="top">{%object_name%}</td>
<td nowrap valign="top">{%column_datatype%}</td>
<td nowrap valign="top">{%column_nulloption%}</td>
{%show_if_config:displayColumnDefault:true:
<td nowrap valign="top">{%column_default%}</td>%}
{%show_if_config:displayColumnDescription:true:
<td valign="top"><font size=-1>{%object_description%} {%ParentNotSystem:[<a
href="fr://edit_description?parent_window={%parent_window%}&object_address={%object_address%}&object_type=COLUMN&object_name={%object_name%}">edit</a>]</font>%}</td>
%}
</tr>%}
</tbody>
</table>
<br><br>
{%NotSystem:
<a href="fr://add_field?parent_window={%parent_window%}&object_address={%object_address%}">Add field</a> | <a
href="fr://reorder_fields?parent_window={%parent_window%}&object_address={%object_address%}">Reorder fields</a> | <a
href="fr://drop_fields?parent_window={%parent_window%}&object_address={%object_address%}">Drop fields</a> | <a
href="fr://alter_relation?parent_window={%parent_window%}&object_address={%object_address%}">Generate rebuild script</a>
%}
<br>
</body>
</html>
|