mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
22 lines
895 B
Scheme
22 lines
895 B
Scheme
<% if $UnsuccessfulFiles %>
|
|
<p style=\"margin: 1em 0\">
|
|
<%t SilverStripe\CMS\Controllers\ContentController.UnableDeleteInstall "Unable to delete installation files. Please delete the files below manually" %>:
|
|
</p>
|
|
|
|
<ul>
|
|
<% loop $UnsuccessfulFiles %>
|
|
<li>$File</li>
|
|
<% end_loop %>
|
|
</ul>
|
|
<% else %>
|
|
<p style="margin: 1em 0">
|
|
<%t SilverStripe\CMS\Controllers\ContentController.InstallFilesDeleted "Installation files have been successfully deleted." %>
|
|
</p>
|
|
<p style="margin: 1em 0">
|
|
<%t SilverStripe\CMS\Controllers\ContentController.StartEditing 'You can start editing your content by opening <a href="{link}">the CMS</a>.' link="admin/" %>
|
|
<br />
|
|
<%t SilverStripe\CMS\Controllers\ContentController.Email "Email" %>: $Username<br />
|
|
<%t SilverStripe\CMS\Controllers\ContentController.Password "Password" %>: $Password<br />
|
|
</p>
|
|
<% end_if %>
|