Skip to content

Commit

Permalink
Dev: Add unused notification history view
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Aug 4, 2016
1 parent 77f339d commit ce60f6d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions application/views/admin/notification/index.php
@@ -0,0 +1,35 @@
<!-- List all notifications -->

<div class="container-fluid welcome full-page-wrapper">
<h3 class="pagetitle"><?php eT('Notifications'); ?></h3>
<?php

$surveyGrid = $this->widget('bootstrap.widgets.TbGridView', array(
'dataProvider' => $model->search(),
'id' => 'notification-grid',
'emptyText' => gT('No notifications found'),
'itemsCssClass' =>'table-striped',
'ajaxUpdate' => true,
'columns' => array(
/*
array(
'id' => 'id'
),
*/
array(
'header' => 'ID',
'name' => 'id'
),
array(
'header' => gT('Title'),
'name' => 'title'
),
array(
'header' => gT('Message'),
'name' => 'message'
)
)
));

?>
</div>

0 comments on commit ce60f6d

Please sign in to comment.