-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patch on installation process and messages. improvements around pendi…
…ng configurations info
- Loading branch information
Showing
7 changed files
with
93 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
@extends($master) | ||
|
||
@section('page') | ||
{{ trans('panichd::admin.index-title') }} | ||
@stop | ||
|
||
@include('panichd::shared.common') | ||
|
||
@section('content') | ||
<div class="panel panel-default"> | ||
<div class="panel-heading"><h3>{!! $title !!}</h3></div> | ||
<div class="panel-body"> | ||
@if(isset($description)) | ||
<p>{!! $description !!}</p> | ||
@endif | ||
</div> | ||
</div> | ||
@stop |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
@extends('panichd::install.partials.html') | ||
|
||
@section('content') | ||
<!--<h3>{{ trans('panichd::install.initial-setup') }}</h3>--> | ||
<h3 style="margin: 0.8em 1em 0.8em 0em;">{!! $title !!}</h3> | ||
<p>{{ $description }}</p> | ||
@if (isset($options) && is_array($options)) | ||
<ul> | ||
@foreach($options as $opt) | ||
<li>{!! $opt !!}</li> | ||
@endforeach | ||
</ul> | ||
@if(isset($description)) | ||
<p>{!! $description !!}</p> | ||
@endif | ||
{!! link_to_route( | ||
'dashboard', | ||
isset($button_text) ? $button_text : trans('panichd::install.continue-to-main-menu'), null, | ||
['class' => 'btn btn-lg btn-primary', | ||
'style' => 'margin: 2em 0em 0em 0em;']) | ||
!!} | ||
@stop |
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