-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Convert tar to zip file for updater * Add update section to maintenance
- Loading branch information
Showing
7 changed files
with
76 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<div class="row"> | ||
<div class="col-sm-12"> | ||
<div class="form-container"> | ||
<h6><i class="fas fa-clock"></i> | ||
Update | ||
</h6> | ||
<div class="row" style="padding-top: 5px"> | ||
<div class="col-sm-12"> | ||
|
||
@if ($new_version) | ||
<p>An update to version {{ $new_version_tag }} is available.</p> | ||
{{ Form::open(['route' => 'admin.maintenance.update']) }} | ||
{{ Form::button('Update', ['type' => 'submit', 'class' => 'btn btn-success']) }} | ||
{{ Form::close() }} | ||
@else | ||
<p>There is no new version available</p> | ||
@endif | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |