Example #1
0
<div class="section">
  <h2>
    Iterations
    <span class="actions">
      <?php 
echo add_link_to2('Add', '@iteration_new?project_id=' . $project->getId());
?>
    </span>
  </h2>

  <?php 
include_partial('iteration/list', array('iterations' => $project->getIterations()));
?>
</div>

<div class="section">
  <h2>
    Backlog
    <span class="actions">
      <?php 
echo add_link_to2('Add task', '@backlogtask_new?project_id=' . $project->getId());
?>
    </span>
  </h2>

  <?php 
include_partial('backlogtask/list', array('tasks' => $project->getBacklogTasks()));
?>
</div>

Example #2
0
include_partial('breadcrumbs');
end_slot();
?>

<?php 
slot('leftMenu');
include_component('user', 'leftMenu');
end_slot();
?>

<div class="section">
  <h2>
    Users
    <span class="actions">
      <?php 
echo add_link_to2('Add', '@user_new');
?>
    </span>
  </h2>

  <?php 
if ($users->count() > 0) {
    ?>
  <table class="list">
    <thead>
      <tr>
        <th class="width15">Username</th>
        <th class="width15">Full Name</th>
        <th class="left width55">Email</th>
        <th class="left width20">Teams</th>
        <th class="left width20">Groups</th>
Example #3
0
      <td>
        <?php 
echo $product->getStories()->count();
?>
      </td>
    </tr>
    <tr>
      <th>Number of left tasks</th>
      <td>
        <?php 
echo __('%available% of %total%', array('%available%' => $product->countAvailableTasks(), '%total%' => $product->countTasks()));
?>
      </td>
    </tr>
  </table>
</div>

<div class="section">
  <h2>
    Projects
    <span class="actions">
      <?php 
echo add_link_to2('Add', '@project_new?product_id=' . $product->getId());
?>
    </span>
  </h2>

  <?php 
include_partial('project/list', array('projects' => $product->getProjects()));
?>
</div>
Example #4
0
?>
</td>
    </tr>
    <tr>
      <th>Number of left tasks</th>
      <td>
        <?php 
echo __('%available% of %total%', array('%available%' => $story->countAvailableTasks(), '%total%' => $story->countTasks()));
?>
      </td>
    </tr>    
  </table>
</div>

<div class="clear"></div>

<div class="section">
  <h2>
    Tasks
    <span class="actions">
      <?php 
echo add_link_to2('Add', '@task_new?story_id=' . $story->getId());
?>
    </span>
  </h2>

  <?php 
include_partial('task/list', array('tasks' => $story->getTasks()));
?>
</div>
Example #5
0
          <?php 
    }
    ?>
          <?php 
} else {
    ?>
          No members assigned to this project
          <?php 
}
?>
      </td>
    </tr>    
  </table>
</div>

<div class="clear"></div>

<div class="section">
  <h2>
    Stories
    <span class="actions">
      <?php 
echo add_link_to2('Add', '@story_new?iteration_id=' . $iteration->getId());
?>
    </span>
  </h2>
  <?php 
include_partial('story/list', array('stories' => $iteration->getStories()));
?>
</div>
Example #6
0
include_partial('breadcrumbs');
end_slot();
?>

<?php 
slot('leftMenu');
include_component('team', 'leftMenu');
end_slot();
?>

<div class="section">
  <h2>
    Teams
    <span class="actions">
      <?php 
echo add_link_to2('Add', '@team_new');
?>
    </span>
  </h2>

  <?php 
if ($teams->count() > 0) {
    ?>
  <table class="list">
    <thead>
      <tr>
        <th class="width45">Name</th>
        <th class="center width5">Actions</th>
      </tr>
    </thead>
    <tbody>
Example #7
0
<?php

use_stylesheet('list');
?>

<div class="sectionTitle">
  <h1>
    Products
    <span class="actions">
      <?php 
echo add_link_to2('Add', '@product_new');
?>
    </span>
  </h1>
</div>

<div class="section">
  <?php 
if ($products->count() > 0) {
    ?>
  <table class="list">
    <thead>
      <tr>
        <th class="left width40">Name</th>
        <th class="center width10">Projects</th>
        <th class="center width10">Iterations</th>
        <th class="center width10">Stories</th>
        <th class="center width10">Tasks</th>
        <th class="center width5">Actions</th>
      </tr>
    </thead>