~spreadubuntu/spreadubuntu/devel-drupal6

« back to all changes in this revision

Viewing changes to modules/views/theme/views-ui-list-views.tpl.php

  • Committer: ruben
  • Date: 2009-06-08 09:38:49 UTC
  • Revision ID: ruben@captive-20090608093849-s1qtsyctv2vwp1x1
SpreadUbuntu moving to Drupal6. Based on ubuntu-drupal theme and adding our modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
// $Id: views-ui-list-views.tpl.php,v 1.6 2008/10/28 18:11:43 merlinofchaos Exp $
 
3
/**
 
4
 * @file
 
5
 *
 
6
 * Displays the list of views on the administration screen.
 
7
 */
 
8
?>
 
9
<p><?php print $help; ?></p>
 
10
<?php print $widgets; ?>
 
11
<?php foreach ($views as $view): ?>
 
12
  <table class="views-entry <?php print $view->classes; ?>">
 
13
    <tbody>
 
14
      <tr>
 
15
        <td class="view-name">
 
16
          <?php print $help_type_icon; ?>
 
17
          <?php print t('<em>@type</em> @base view: <strong>@view</strong>', array('@type' => $view->type, '@view' => $view->name, '@base' => $view->base)); ?>
 
18
          <?php if (!empty($view->tag)): ?>
 
19
            &nbsp;(<?php print $view->tag; ?>)
 
20
          <?php endif; ?>
 
21
        </td>
 
22
        <td class="view-ops"><?php print $view->ops ?></td>
 
23
      </tr>
 
24
      <tr>
 
25
        <td>
 
26
          <?php if ($view->title): ?>
 
27
            <?php print t('Title: @title', array('@title' => $view->title)); ?> <br />
 
28
          <?php endif; ?>
 
29
          <?php if ($view->path): ?>
 
30
            <?php print t('Path: !path', array('!path' => $view->path)); ?> <br />
 
31
          <?php endif; ?>
 
32
          <?php if ($view->displays): ?>
 
33
            <em><?php print $view->displays; ?> </em><br />
 
34
          <?php endif; ?>
 
35
        </td>
 
36
        <td colspan="2" class="description">
 
37
          <?php print $view->description; ?>
 
38
        </td>
 
39
      </tr>
 
40
    </tbody>
 
41
  </table>
 
42
<?php endforeach; ?>