mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
86017a5ae9
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@65289 467b73ca-7a2a-4603-9d3b-597d59a354a9
36 lines
871 B
Scheme
Executable File
36 lines
871 B
Scheme
Executable File
<div id="LeftPane">
|
|
<!-- <h2><% _t('SEARCHLISTINGS','Search Listings') %></h2> -->
|
|
<div id="SearchForm_holder" class="leftbottom">
|
|
<% if SearchClassSelector = tabs %>
|
|
<ul class="tabstrip">
|
|
<% control ModelForms %>
|
|
<li class="$FirstLast"><a href="#{$Form.Name}_$ClassName">$Title</a></li>
|
|
<% end_control %>
|
|
</ul>
|
|
<% end_if %>
|
|
|
|
<% if SearchClassSelector = dropdown %>
|
|
<p id="ModelClassSelector">
|
|
Search for:
|
|
<select>
|
|
<% control SearchForms %>
|
|
<option value="{$Form.Name}_$ClassName">$Title</option>
|
|
<% end_control %>
|
|
</select>
|
|
</p>
|
|
<% end_if %>
|
|
|
|
<% control ModelForms %>
|
|
<div class="tab" id="{$Form.Name}_$ClassName">
|
|
<h3>Create</h3>
|
|
$CreateForm
|
|
|
|
<h3>Search</h3>
|
|
$SearchForm
|
|
|
|
<h3>Import</h3>
|
|
$ImportForm
|
|
</div>
|
|
<% end_control %>
|
|
</div>
|
|
</div> |