-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
141 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<section id="items" class="box"> | ||
<header> | ||
<h2><?php echo __('Last actualities') ?></h2> | ||
</header> | ||
|
||
<section class="boxContent"> | ||
<table> | ||
<tbody> | ||
<?php foreach($actus as $actu): ?> | ||
<tr> | ||
<td class="item"><?php echo $actu->getTitle() ?></td> | ||
<td class="action"><a href="<?php echo url_for('peanut_actu_edit', array('id' => $actu->getId())) ?>"><?php echo __('Edit') ?></td> | ||
</tr> | ||
<?php endforeach; ?> | ||
</tbody> | ||
</table> | ||
|
||
</section> | ||
|
||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<section id="sf_admin_container"> | ||
|
||
<header> | ||
<h1><?php echo __('Actualities settings') ?></h1> | ||
</header> | ||
|
||
<section id="sf_admin_header"></section> | ||
|
||
<section id="sf_admin_content"> | ||
|
||
<div class="sf_admin_form clearfix"> | ||
<form action="<?php echo url_for('settings/actu') ?>" method="post"> | ||
|
||
<?php echo $form->renderHiddenFields() ?> | ||
<fieldset id="sf_fieldset_content"> | ||
|
||
<div class="content_box_content clearfix"> | ||
|
||
<div class="sf_admin_form_row sf_admin_text sf_admin_form_field_site_name"> | ||
<div> | ||
<?php echo $form['actu_max_last']->renderLabel() ?> | ||
<div class="content"> | ||
<?php echo $form['actu_max_last']->render(array('class' => 'text-input')) ?> | ||
</div> | ||
<div class="help"> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="sf_admin_form_row sf_admin_text sf_admin_form_field_meteo"> | ||
<div> | ||
<?php echo $form['actu_per_page']->renderLabel() ?> | ||
<div class="content"> | ||
<?php echo $form['actu_per_page']->render(array('class' => 'text-input')) ?> | ||
</div> | ||
<div class="help"> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
</fieldset> | ||
|
||
<fieldset id="sf_fieldset_informations"> | ||
|
||
<p><?php echo __('This is your actualities settings, they are used for the frontend application.') ?></p> | ||
|
||
<input name="Send" type="submit" value="<?php echo __('Submit') ?>" class="button" id="send" size="16"/> | ||
</fieldset> | ||
|
||
</form> | ||
</div> | ||
</section> | ||
|
||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters