mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
git-subtree-dir: community_server git-subtree-mainline: ff11f6efe35bba180260fe84077bcd94298895c1 git-subtree-split: b6544b9e69fb85d4da100934675323c3e8c8ef67
25 lines
792 B
PHP
25 lines
792 B
PHP
<?php
|
|
/**
|
|
* @var \App\View\AppView $this
|
|
* @var \App\Model\Entity\CommunityProfile $communityProfile
|
|
*/
|
|
?>
|
|
<nav class="large-3 medium-4 columns" id="actions-sidebar">
|
|
<ul class="side-nav">
|
|
<li class="heading"><?= __('Actions') ?></li>
|
|
<li><?= $this->Html->link(__('List Community Profiles'), ['action' => 'index']) ?></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="communityProfiles form large-9 medium-8 columns content">
|
|
<?= $this->Form->create($communityProfile) ?>
|
|
<fieldset>
|
|
<legend><?= __('Add Community Profile') ?></legend>
|
|
<?php
|
|
echo $this->Form->control('state_user_id');
|
|
echo $this->Form->control('profile_desc');
|
|
?>
|
|
</fieldset>
|
|
<?= $this->Form->button(__('Submit')) ?>
|
|
<?= $this->Form->end() ?>
|
|
</div>
|