blessing-skin-server/resources/views/common/manage-panel.tpl
2018-07-17 11:06:55 +08:00

19 lines
803 B
PHP

<div class="box box-danger">
{{-- Texture Manage Panel --}}
<div class="box-header with-border">
<h3 class="box-title">{{ $title }}</h3>
</div><!-- /.box-header -->
<div class="box-body">
<p>{{ $message }}</p>
</div><!-- /.box-body -->
<div class="box-footer">
@if ($texture->public == "1")
<a onclick="changePrivacy({{ $texture->tid }});" class="btn btn-warning">@lang('skinlib.privacy.set-as-private')</a>
@else
<a onclick="changePrivacy({{ $texture->tid }});" class="btn btn-warning">@lang('skinlib.privacy.set-as-public')</a>
@endif
<a onclick="deleteTexture({{ $texture->tid }});" class="btn btn-danger pull-right">@lang('skinlib.show.delete-texture')</a>
</div><!-- /.box-footer -->
</div><!-- /.box -->