Skip to content
Code-Schnipsel Gruppen Projekte
settings.html 2,26 KiB
Newer Older

<form class="quiqqer-bricks-brickedit">
    <table class="data-table">
    <thead>
        <tr>
            <th>
                {locale group="quiqqer/bricks" var="brick.edit.allowed.areas"}
            </th>
        </tr>
    </thead>
    <tbody>
        <tr class="{cycle values="odd,even"}">
            <td>
                <div class="quiqqer-bricks-areas"></div>
            </td>
        </tr>
    </tbody>
    </table>


    <table class="data-table">
    <thead>
        <tr>
            <th colspan="2">
                {locale group="quiqqer/bricks" var="brick.edit.settings.proportion.header"}
            </th>
        </tr>
    </thead>
    <tbody>
    <tr class="{cycle values="odd,even" reset=true}">
        <td>
            <label for="height">
                {locale group="quiqqer/bricks" var="brick.edit.height"}
            </label>
        </td>
        <td>
            <input type="text" name="height" id="height" />
        </td>
    </tr>
    <tr class="{cycle values="odd,even"}">
        <td>
            <label for="width">
                {locale group="quiqqer/bricks" var="brick.edit.width"}
            </label>
        </td>
        <td>
            <input type="text" name="width" id="width" />
        </td>
    </tr>
    </tbody>
    </table>


    <table class="data-table brick-table-flexible">
    <thead>
    <tr>
        <th>
            {locale group="quiqqer/bricks" var="brick.edit.settings.flexible.header"}
            <div class="description">
                {locale group="quiqqer/bricks" var="brick.edit.settings.flexible.header.description"}
            </div>
        </th>
    </tr>
    </thead>
    <tbody>
        <tr class="{cycle values="odd,even" reset=true}">
            <td>
                <label>
                    <input type="checkbox" name="flexible-height">
                    <span>{locale group="quiqqer/bricks" var="brick.edit.height"}</span>
                </label>
            </td>
        </tr>
        <tr class="{cycle values="odd,even"}">
            <td>
                <label>
                    <input type="checkbox" name="flexible-width">
                    <span>{locale group="quiqqer/bricks" var="brick.edit.width"}</span>
                </label>
            </td>
        </tr>
    </tbody>
    </table>