You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
789 B
32 lines
789 B
<?php
|
|
/**
|
|
* Calling conventions
|
|
*
|
|
* $column - <QueueColumn> instance for this column
|
|
*/
|
|
$colid = $column->getId();
|
|
?>
|
|
<h3 class="drag-handle"><?php echo __('Manage Queue Column'); ?> —
|
|
<?php echo $column->get('name') ?></h3>
|
|
<a class="close" href=""><i class="icon-remove-circle"></i></a>
|
|
<hr/>
|
|
|
|
<form method="post" action="#tickets/search/column/edit/<?php
|
|
echo $colid; ?>">
|
|
|
|
<?php
|
|
include 'queue-column.tmpl.php';
|
|
?>
|
|
|
|
<hr>
|
|
<p class="full-width">
|
|
<span class="buttons pull-left">
|
|
<input type="reset" value="<?php echo __('Reset'); ?>">
|
|
<input type="button" value="<?php echo __('Cancel'); ?>" class="close">
|
|
</span>
|
|
<span class="buttons pull-right">
|
|
<input type="submit" value="<?php echo __('Save'); ?>">
|
|
</span>
|
|
</p>
|
|
|
|
</form>
|