Subversion-Projekte lars-tiefland.ci

Revision

Revision 1295 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

<!-- $Id: termine.tpl 2237 2017-12-23 23:58:01Z lars $ BEGIN -->
<div>
    <form method="get">
        <table border="0" cellspacing="5" cellpadding="5">
            <tbody>
                <tr>
                    <td>
                        <label for="status">Status:</label>
                    </td>
                    <td>
                        {html_options name="status" options=$status selected=$smarty.get.status id="status"}
                    </td>
                    <td>
                        <label for="ersteller">Ersteller:</label>
                    </td>
                    <td>
                        {html_options name="ersteller" options=$ersteller selected=$smarty.get.ersteller id="ersteller"}
                    </td>
                    <td>
                        <label for="allcreated">alle erstellten Termine</label>
                    </td>
                    <td>
                        <input name="allcreated" type="hidden" value="0" />
                        <input name="allcreated" type="checkbox" value="1" id="allcreated" {if $smarty.get.allcreated==1}checked="checked"{/if} />
                    </td>
                </tr>
                <tr>
                    <td>
                        <label for="datum">Erstelldatum:</label>
                    </td>
                    <td>
                        {html_options name="datum" options=$datum selected=$smarty.get.datum id="datum"}
                        <div id="bereich" style="{if $smarty.get.datum!="bereich"}display:none;{/if}">
                            <input type="hidden" id="dbvon" name="von" value="{$smarty.get.von}" />
                            <input type="hidden" id="dbbis" name="bis" value="{$smarty.get.bis}" />
                            <label for="von">Start:</label> <input type="text" class="cal" id="von" value="{$smarty.get.von|date_format:'d.m.Y'}" style="width:80px;" />
                            <label for="bis">Ende:</label> <input type="text" class="cal" id="bis" value="{$smarty.get.bis|date_format:'d.m.Y'}" style="width:80px;" />
                        </div>
                    </td>
                    <td>
                        <label for="fdatum">F&auml;lligkeitsdatum:</label>
                    </td>
                    <td>
                        {html_options name="fdatum" options=$datum selected=$smarty.get.fdatum id="fdatum"}
                        <div id="fbereich" style="{if $smarty.get.fdatum!="bereich"}display:none;{/if}">
                            <input type="hidden" id="dbfvon" name="fvon" value="{$smarty.get.fvon}" />
                            <input type="hidden" id="dbfbis" name="fbis" value="{$smarty.get.fbis}" />
                            <label for="fvon">Start:</label> <input type="text" class="cal" id="fvon" value="{$smarty.get.fvon|date_format:'d.m.Y'}" style="width:80px;" />
                            <label for="fbis">Ende:</label>  <input type="text" class="cal" id="fbis" value="{$smarty.get.fbis|date_format:'d.m.Y'}" style="width:80px;" />
                        </div>
                    </td>
                    <td colspan="5">
                        <button>Suche starten</button>
                    </td>
                </tr>
            </tbody>
        </table>
    </form>
    <div id="termineTabs">
        <ul>
            {if $termine.abgelaufen}
            <li>
                <a href="#faellig">f&auml;llige Termine</a>
            </li>
            {/if}
            {if $termine.kommend}
            <li>
                <a href="#kommend">zuk&uuml;nftige Termine</a>
            </li>
            {/if}
        </ul>
        {if $termine.abgelaufen}
        <div id="faellig">
            {include file="termineTable.tpl" termine=$termine.abgelaufen}
        </div>
        {/if}
        {if $termine.kommend}
        <div id="kommend">
            {include file="termineTable.tpl" termine=$termine.kommend}
        </div>
        {/if}
    </div>
</div>
<!-- $Id: termine.tpl 2237 2017-12-23 23:58:01Z lars $ END -->