<?php echo $header; ?>
<hgroup class="wrap">
<h1><?php echo __('extend.extend', 'Extend'); ?></h1>
<nav>
<a class="btn" href="<?php echo admin_url('extend/fields/add'); ?>"><?php echo __('extend.create_field', 'Create a new field'); ?></a>
</nav>
</hgroup>
<section class="wrap">
<?php echo $messages; ?>
<?php if(count($extend->results)): ?>
<ul class="list">
<?php foreach($extend->results as $field): ?>
<li>
<a href="<?php echo admin_url('extend/fields/edit/' . $field->id); ?>">
<strong><?php echo $field->label; ?></strong>
<span><?php echo $field->type . ' ' . $field->field; ?></span>
</a>
</li>
<?php endforeach; ?>
</ul>
<aside class="paging"><?php echo $extend->links(); ?></aside>
<?php endif; ?>
</section>
<?php echo $footer; ?>