~fabiocbalbuquerque/sahana-agasti/web-services

« back to all changes in this revision

Viewing changes to apps/frontend/modules/scenario/templates/_shifttemplateholder.php

  • Committer: Chad Heuschober
  • Date: 2011-06-06 13:37:45 UTC
  • mfrom: (1.1.1244 trunk)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: chad.heuschober@mail.cuny.edu-20110606133745-850mdvnjtv392zta
Pulled in most recent batch of changes from the cuny sps trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
 
use_javascript('jquery.ui.custom.js');
3
 
//use_javascript('agMain.js');
4
 
use_stylesheet('jquery/jquery.ui.custom.css');
5
 
use_stylesheet('jquery/mayon.jquery.ui.css');
 
2
 
 
3
foreach ($shifttemplateforms->getEmbeddedForms() as $key => $shifttemplateform) {
 
4
  include_partial('shifttemplateform', array('shifttemplateform' => $shifttemplateform, 'scenario_id' => $scenario_id, 'number' => $key));
 
5
}
 
6
 
6
7
?>
7
 
 
8
 
 
9
 
 
10
 
<?php foreach ($shifttemplateforms->getEmbeddedForms() as $key => $shifttemplateform): ?>
11
 
    <div class="infoHolder shiftTemplateCounter">
12
 
<?php include_partial('newshifttemplateform', array('shifttemplateform' => $shifttemplateform, 'scenario_id' => $scenario_id, 'number' => $key)) ?>
13
 
 
14
 
  </div>
15
 
<?php endforeach; ?>