~ubuntu-branches/ubuntu/precise/trac/precise

« back to all changes in this revision

Viewing changes to trac/ticket/templates/milestone_view.html

  • Committer: Bazaar Package Importer
  • Author(s): Luis Matos
  • Date: 2008-08-16 00:08:30 UTC
  • mfrom: (1.1.14 upstream) (14.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080816000830-q50gglu6pbj0gas2
Tags: 0.11.1-2
* Upstream version 
  "Trac 0.11.1 contains a number of bug fixes and minor enhancements."
* Patch setup.py to install the contrib dir ( Closes: #495019 )
* Modified compatible version of trac-bzr so that trac 0.11.1 an be
  used with the current trac-bzr version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
                      value="${group.name}" py:content="group.label"
51
51
                      selected="${grouped_by == group.name or None}" />
52
52
            </select>
53
 
            <noscript><input type="submit" value="Update" /></noscript>
 
53
            <input type="submit" value="Update" class="noscript" />
 
54
            <script type="text/javascript">
 
55
              jQuery(document).ready(function ($) { $(".noscript").attr("style", "display: none"); });
 
56
            </script>
54
57
          </legend>
55
 
          <table summary="Shows the milestone completion status grouped by ${grouped_by}">
 
58
          <table py:if="groups" summary="Shows the milestone completion status grouped by ${grouped_by}">
56
59
            <tr py:for="group in groups">
57
60
              <th scope="row" py:choose="">
58
61
                <i py:when="not group.name"><a href="${group.stats_href}">(none)</a></i>
83
86
                  attachments.can_create"
84
87
           class="buttons">
85
88
        <form py:if="'MILESTONE_MODIFY' in perm(milestone.resource)" method="get" action="" id="editmilestone">
86
 
          <input type="hidden" name="action" value="edit" />
87
 
          <input type="submit" value="Edit milestone" />
 
89
          <div>
 
90
            <input type="hidden" name="action" value="edit" />
 
91
            <input type="submit" value="Edit milestone" />
 
92
          </div>
88
93
        </form>
89
94
        <form py:if="'MILESTONE_DELETE' in perm(milestone.resource)" method="get" action="" id="deletemilestone">
90
 
          <input type="hidden" name="action" value="delete" />
91
 
          <input type="submit" value="Delete milestone" />
 
95
          <div>
 
96
            <input type="hidden" name="action" value="delete" />
 
97
            <input type="submit" value="Delete milestone" />
 
98
          </div>
92
99
        </form>
93
100
        ${attach_file_form(attachments)}
94
101
      </div>