mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
6ee0d53f40
Merge error from 2a35f2f928059620aa55a41458af48c0effb8ced, which was then further regressed by Sam running the text collector on those faulty templates: 750b5b4079510ff1edc16dadf5a8b2a65258c072
22 lines
771 B
Scheme
22 lines
771 B
Scheme
<div class="importSpec" id="SpecFor{$ModelName}">
|
|
<a href="#SpecDetailsFor{$ModelName}" class="detailsLink"><% sprintf(_t('ModelAdmin_ImportSpec_ss.IMPORTSPECLINK', 'Show Specification for %s'),$ModelName) %></a>
|
|
<div class="details" id="SpecDetailsFor{$ModelName}">
|
|
<h4><% sprintf(_t('ModelAdmin_ImportSpec_ss.IMPORTSPECTITLE', 'Specification for %s'),$ModelName) %></h4>
|
|
<h5><% _t('ModelAdmin_ImportSpec_ss.IMPORTSPECFIELDS', 'Database columns') %></h5>
|
|
<% loop $Fields %>
|
|
<dl>
|
|
<dt><em>$Name</em></dt>
|
|
<dd>$Description</dd>
|
|
</dl>
|
|
<% end_loop %>
|
|
|
|
<h5><% _t('ModelAdmin_ImportSpec_ss.IMPORTSPECRELATIONS', 'Relations') %></h5>
|
|
<% loop $Relations %>
|
|
<dl>
|
|
<dt><em>$Name</em></dt>
|
|
<dd>$Description</dd>
|
|
</dl>
|
|
<% end_loop %>
|
|
</div>
|
|
</div>
|