forked from mapasculturais/mapasculturais
-
Notifications
You must be signed in to change notification settings - Fork 0
/
registrations.php
34 lines (33 loc) · 1.26 KB
/
registrations.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
use MapasCulturais\Entities\Registration;
$this->layout = 'panel';
$drafts = $app->repo('Registration')->findByUser($app->user, Registration::STATUS_DRAFT);
$sent = $app->repo('Registration')->findByUser($app->user, 'sent');
?>
<div class="panel-list panel-main-content">
<header class="panel-header clearfix">
<h2>Minhas inscrições</h2>
</header>
<ul class="abas clearfix clear">
<li class="active"><a href="#ativos">Rascunhos</a></li>
<li><a href="#enviadas">Enviadas</a></li>
</ul>
<div id="ativos">
<?php foreach($drafts as $registration): ?>
<?php $this->part('panel-registration', array('registration' => $registration)); ?>
<?php endforeach; ?>
<?php if(!$drafts): ?>
<div class="alert info">Você não possui nenhum rascunho de inscrição.</div>
<?php endif; ?>
</div>
<!-- #ativos-->
<div id="enviadas">
<?php foreach($sent as $registration): ?>
<?php $this->part('panel-registration', array('registration' => $registration)); ?>
<?php endforeach; ?>
<?php if(!$sent): ?>
<div class="alert info">Você não enviou nenhuma inscrição.</div>
<?php endif; ?>
</div>
<!-- #lixeira-->
</div>