Skip to content

Commit

Permalink
ENHANCEMENT SSF-25 : use a title if users/devs has set one instead us…
Browse files Browse the repository at this point in the history
…ing a hard-coded one
  • Loading branch information
normann committed Mar 8, 2012
1 parent fd828fc commit 7673369
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions admin/templates/Includes/ModelAdmin_Content.ss
@@ -1,9 +1,13 @@
<div class="cms-content center $BaseCSSClasses" data-layout-type="border">

<div class="cms-content-header north">
<div>
<h2><% _t('ModelAdmin.Title', 'My Model') %></h2>
</div>
<div><h2>
<% if SectionTitle %>
$SectionTitle
<% else %>
<% _t('ModelAdmin.Title', 'Data Models') %>
<% end_if %>
</h2></div>
</div>

$Tools
Expand Down

0 comments on commit 7673369

Please sign in to comment.