migrate to gtea from bistbucket
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
@extends('install.layouts.master')
|
||||
@section('title', _lang('install_permissions'))
|
||||
@section('container')
|
||||
<ul class="list-group">
|
||||
@foreach ($permissions as $path => $isWritable)
|
||||
<li class="list-group-item">
|
||||
{{ $path }}
|
||||
@if ($isWritable)
|
||||
<span class="badge badge1"><i class="fa fa-check"></i></span>
|
||||
@else
|
||||
<span class="badge badge2"><i class="fa fa-times"></i></span>
|
||||
@endif
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
|
||||
<div class="form-group">
|
||||
@if ($next)
|
||||
<a href="{{ url('install/step-4') }}" class="btn pull-right"> {{ _lang('install_next') }}</a>
|
||||
@else
|
||||
<div class="alert alert-danger">{{ _lang('install_check') }}</div>
|
||||
<a class="btn pull-right" href="{{ Request::url() }}">
|
||||
{{ _lang('refresh') }}
|
||||
<i class="fa fa-refresh"></i></a>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user