init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
66
template/tpl/infop.tpl
Normal file
66
template/tpl/infop.tpl
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<!-- heute Tag !!!!!!!!!!!! offene Tourenplanung -->
|
||||
<div class="col-sm-6">
|
||||
|
||||
<div class="panel panel-default">
|
||||
<header class="panel-heading"><h2 class="panel-title">Info hinzufügen</span></h2></header>
|
||||
<div class="panel-body">
|
||||
<form action="" method="post">
|
||||
<table>
|
||||
<tr>
|
||||
<div class="form-group">
|
||||
|
||||
<label for="comment">Neue Information":</label>
|
||||
<textarea class="form-control" rows="5" id="text" name="text" name="text"></textarea>
|
||||
</div>
|
||||
</tr>
|
||||
<tr>
|
||||
<input type="hidden" name="ma_id" value="{$mitarbeiter.id}"/>
|
||||
<button type="submit" name="infoplus" value=" Send" id="infoplus" class="btn btn-success" >normalen Eintrag hinzufügen
|
||||
<button type="submit" name="infowichtig" value=" Send" id="infowichtig" class="btn btn-danger" >wichtigen Eintrag hinzufügen
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- rechte seite - aktuelles panel infop -->
|
||||
<div class="col-sm-6">
|
||||
|
||||
<div class="panel">
|
||||
<div class="panel-heading" style="background-color:yellow;">
|
||||
<h5 class="panel-title">Informationspanel JB-intern</h5>
|
||||
</div>
|
||||
<div id="infop" style="text-align:left;"></div>
|
||||
</div>
|
||||
<div class="panel-body" style="min-height:600px;max-height:600px;overflow-y: scroll;">
|
||||
<table class="no-style full">
|
||||
<tbody>
|
||||
{foreach from=$infop item=infop }
|
||||
<tr><H6>{$infop.von}: - {$infop.zeit|date_format:"%d.%m.%Y - %H:%M"} Uhr</H6></tr>
|
||||
{if $infop.wichtig>0}
|
||||
<i class="fa fa-exclamation fa-border" style="color: red;" aria-hidden="true"></i>
|
||||
<tr><strong><span style='color:#FF0000'> {$infop.info}</strong></H5></tr>
|
||||
{else}
|
||||
<i class="fa fa-info fa-border" aria-hidden="true"></i>
|
||||
<tr><strong> {$infop.info}</strong></H5></tr>
|
||||
{/if}
|
||||
<hr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue