Panel Inception Fix
This commit is contained in:
parent
efa5c0b7bd
commit
6f5c5d70c6
@ -48,10 +48,7 @@
|
||||
<div class="form-group">
|
||||
<label>Anonymous Account</label>
|
||||
<input type="hidden" name="is_anonymous" value="0" />
|
||||
<input type="checkbox" data-size="mini" name="is_anonymous" id="is_anonymous" value="1" {if $GLOBAL.userdata.is_anonymous}checked{/if} {if $GLOBAL.twofactor.enabled && $GLOBAL.twofactor.options.details && !$DETAILSUNLOCKED}id="disabledInput" disabled{/if}/>
|
||||
<script>
|
||||
$("[id='is_anonymous']").bootstrapSwitch();
|
||||
</script>
|
||||
<input type="checkbox" class="switch" data-size="mini" name="is_anonymous" id="is_anonymous" value="1" {if $GLOBAL.userdata.is_anonymous}checked{/if} {if $GLOBAL.twofactor.enabled && $GLOBAL.twofactor.options.details && !$DETAILSUNLOCKED}id="disabledInput" disabled{/if}/>
|
||||
</br>
|
||||
<font size="1">Hide username on website from others. Admins can still get your user information.</font>
|
||||
</div>
|
||||
|
||||
@ -23,8 +23,7 @@
|
||||
<th>Active</th>
|
||||
<td>
|
||||
<input type="hidden" name="active" value="0" />
|
||||
<input type="checkbox" name="active" value="1" id="active" {nocache}{if $NEWS.active}checked{/if}{/nocache} />
|
||||
<label for="active"></label>
|
||||
<input type="checkbox" class="switch" name="active" value="1" id="active" {nocache}{if $NEWS.active}checked{/if}{/nocache}>
|
||||
</td>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
|
||||
26
public/templates/bootstrap/statistics/blocks/block_shares_graph.tpl
Normal file → Executable file
26
public/templates/bootstrap/statistics/blocks/block_shares_graph.tpl
Normal file → Executable file
@ -41,22 +41,16 @@ $(function () {
|
||||
<i class="fa fa-th fa-fw"></i> Block Shares
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="panel-group">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<ul class="pager">
|
||||
<li class="previous">
|
||||
<a href="{$smarty.server.SCRIPT_NAME}?page={$smarty.request.page|escape}&action={$smarty.request.action|escape}&height={if is_array($BLOCKSFOUND) && count($BLOCKSFOUND) > ($BLOCKLIMIT - 1)}{$BLOCKSFOUND[$BLOCKLIMIT - 1].height}{/if}&prev=1"> ←</a>
|
||||
</li>
|
||||
<li class="next">
|
||||
<a href="{$smarty.server.SCRIPT_NAME}?page={$smarty.request.page|escape}&action={$smarty.request.action|escape}&height={if is_array($BLOCKSFOUND) && count($BLOCKSFOUND) > 0}{$BLOCKSFOUND[0].height}{/if}&next=1"> →</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="flot-chart">
|
||||
<div id="block-area-chart"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<ul class="pager">
|
||||
<li class="previous">
|
||||
<a href="{$smarty.server.SCRIPT_NAME}?page={$smarty.request.page|escape}&action={$smarty.request.action|escape}&height={if is_array($BLOCKSFOUND) && count($BLOCKSFOUND) > ($BLOCKLIMIT - 1)}{$BLOCKSFOUND[$BLOCKLIMIT - 1].height}{/if}&prev=1"> ←</a>
|
||||
</li>
|
||||
<li class="next">
|
||||
<a href="{$smarty.server.SCRIPT_NAME}?page={$smarty.request.page|escape}&action={$smarty.request.action|escape}&height={if is_array($BLOCKSFOUND) && count($BLOCKSFOUND) > 0}{$BLOCKSFOUND[0].height}{/if}&next=1"> →</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="flot-chart">
|
||||
<div id="block-area-chart"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user