mirror of
https://github.com/Karaka-Management/oms-Draw.git
synced 2026-02-14 22:28:41 +00:00
More flexbox implementations
This commit is contained in:
parent
fe466bc2a3
commit
a0c9ced34a
|
|
@ -19,15 +19,21 @@
|
||||||
|
|
||||||
echo $this->getData('nav')->render(); ?>
|
echo $this->getData('nav')->render(); ?>
|
||||||
|
|
||||||
<section class="box w-100">
|
<div class="row">
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<section class="box wf-100">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<form id="drawForm" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/draw?csrf={$CSRF}'); ?>" method="POST">
|
<form id="drawForm" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/draw?csrf={$CSRF}'); ?>" method="POST">
|
||||||
<input type="text" id="iTitle" name="title" class="wf-100"><input type="submit" value="<?= $this->getText('Create', 0, 0); ?>">
|
<input type="text" id="iTitle" name="title" class="wf-100"><input type="submit" value="<?= $this->getText('Create', 0, 0); ?>">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="box w-100">
|
<div class="row">
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<div class="box wf-100">
|
||||||
<div class="tabular">
|
<div class="tabular">
|
||||||
<ul class="tab-links">
|
<ul class="tab-links">
|
||||||
<li><label for="c-tab-1"><?= $this->getText('Start') ?></label>
|
<li><label for="c-tab-1"><?= $this->getText('Start') ?></label>
|
||||||
|
|
@ -58,17 +64,25 @@ echo $this->getData('nav')->render(); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="m-draw">
|
<div class="row">
|
||||||
<section class="box w-100" style="height: 30%;">
|
<div class="col-xs-12">
|
||||||
|
<div class="m-draw">
|
||||||
|
<section class="box wf-100" style="height: 30%;">
|
||||||
<div class="inner resizable">
|
<div class="inner resizable">
|
||||||
<canvas id="canvasImage resizable" name="image" form="drawForm"></canvas>
|
<canvas id="canvasImage resizable" name="image" form="drawForm"></canvas>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section class="box w-100">
|
<div class="row">
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<section class="box wf-100">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<form>
|
<form>
|
||||||
<table class="layout">
|
<table class="layout">
|
||||||
|
|
@ -81,4 +95,6 @@ echo $this->getData('nav')->render(); ?>
|
||||||
</table>
|
</table>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
@ -25,7 +25,9 @@ $footerView->setPage(1);
|
||||||
$images = $this->getData('images');
|
$images = $this->getData('images');
|
||||||
|
|
||||||
echo $this->getData('nav')->render(); ?>
|
echo $this->getData('nav')->render(); ?>
|
||||||
<div class="box">
|
<div class="row">
|
||||||
|
<div class="col-xs-12">
|
||||||
|
<div class="box wf-100">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<caption><?= $this->getText('Images'); ?></caption>
|
<caption><?= $this->getText('Images'); ?></caption>
|
||||||
<thead>
|
<thead>
|
||||||
|
|
@ -48,4 +50,6 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<tr><td colspan="5" class="empty"><?= $this->getText('Empty', 0, 0); ?>
|
<tr><td colspan="5" class="empty"><?= $this->getText('Empty', 0, 0); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user