2011-08-07 00:32:06 +04:00
|
|
|
<?php // Include Style and Script
|
|
|
|
OC_Util::addScript('contacts','interface');
|
|
|
|
OC_Util::addStyle('contacts','styles');
|
2011-10-22 21:22:01 +04:00
|
|
|
OC_Util::addStyle('contacts','formtastic');
|
2011-08-07 00:32:06 +04:00
|
|
|
?>
|
|
|
|
|
2011-09-09 01:36:47 +04:00
|
|
|
<div id="controls">
|
|
|
|
<form>
|
|
|
|
<input type="button" id="contacts_newcontact" value="<?php echo $l->t('Add Contact'); ?>">
|
|
|
|
</form>
|
|
|
|
</div>
|
2011-08-11 12:08:02 +04:00
|
|
|
<div id="leftcontent" class="leftcontent">
|
2011-08-07 00:32:06 +04:00
|
|
|
<ul>
|
2011-08-09 15:53:58 +04:00
|
|
|
<?php echo $this->inc("part.contacts"); ?>
|
2011-08-07 00:32:06 +04:00
|
|
|
</ul>
|
|
|
|
</div>
|
2011-08-11 12:08:02 +04:00
|
|
|
<div id="rightcontent" class="rightcontent" data-id="<?php echo $_['id']; ?>">
|
2011-10-08 02:00:49 +04:00
|
|
|
<?php echo $this->inc("part.addcardform"); ?>
|
2011-08-07 00:32:06 +04:00
|
|
|
</div>
|