Skip to content
Snippets Groups Projects
add_slot.tpl 1.86 KiB
Newer Older
Olivier PEREZ's avatar
WIP
Olivier PEREZ committed
{extends file='page.tpl'}

{block name=main}
    <form action="{$admin_poll_id|poll_url:true}" method="POST">
        <div class="alert alert-info text-center">
Olivier PEREZ's avatar
WIP
Olivier PEREZ committed

            {if $format === 'D'}
                <div class="form-group">
                    <label for="newdate" class="col-md-4">{_('Day')}</label>
                    <div class="col-md-8">
                        <div class="input-group date">
                            <span class="input-group-addon"><i class="glyphicon glyphicon-calendar"></i></span>
                            <input type="text" id="newdate" data-date-format="{_('dd/mm/yyyy')}" aria-describedby="dateformat" name="newdate" class="form-control" placeholder="{_('dd/mm/yyyy')}" />
                        </div>
                        <span id="dateformat" class="sr-only">{_('(dd/mm/yyyy)')}</span>
Olivier PEREZ's avatar
WIP
Olivier PEREZ committed
                    </div>
                </div>
                <div class="form-group">
                    <label for="newmoment" class="col-md-4">{_('Time')}</label>
                    <div class="col-md-8">
                        <input type="text" id="newmoment" name="newmoment" class="form-control" />
                    </div>
Olivier PEREZ's avatar
WIP
Olivier PEREZ committed
                </div>
            {else}
                <div class="form-group">
                    <label for="choice" class="col-md-4">{_('Choice')}</label>
                    <div class="col-md-8">
                        <input type="text" id="choice" name="choice" class="form-control" />
                    </div>
                </div>
            {/if}
Olivier PEREZ's avatar
WIP
Olivier PEREZ committed
                <button class="btn btn-default" type="submit" name="back">{_('Back to the poll')}</button>
                <button type="submit" name="confirm_add_slot" class="btn btn-success">{_('Add a column')}</button>
            </div>
        </div>
    </form>
{/block}