HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/theflexguy_com_trac_trac/trac/admin/templates/admin_versions.html
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:xi="http://www.w3.org/2001/XInclude"
      xmlns:py="http://genshi.edgewall.org/">
  <xi:include href="admin.html" />
  <head>
    <title>Versions</title>
  </head>

  <body>
    <h2>Manage Versions</h2>

    <py:choose test="view">
      <form py:when="'detail'" class="mod" id="modifyversion" method="post" action="">
        <fieldset>
          <legend>Modify Version:</legend>
          <div class="field">
            <label>Name:<br />
              <input type="text" name="name" value="${version.name}" />
            </label>
          </div>
          <div class="field">
            <label>Date:<br />
              <input type="text" name="time" size="${len(datetime_hint)}"
                     value="${format_datetime(version.time)}"
                     title="Format: $datetime_hint" />
              <em>Format: $datetime_hint</em>
            </label>
          </div>
          <div class="field">
            <fieldset class="iefix">
              <label for="description">
                Description (you may use <a tabindex="42" href="${href.wiki('WikiFormatting')}">WikiFormatting</a> here):
              </label>
              <p>
                <textarea id="description" name="description" class="wikitext" rows="6" cols="60">
$version.description</textarea>
              </p>
            </fieldset>
          </div>
          <div class="buttons">
            <input type="submit" name="cancel" value="Cancel"/>
            <input type="submit" name="save" value="Save"/>
          </div>
        </fieldset>
      </form>

      <py:otherwise>
        <form class="addnew" id="addversion" method="post" action="">
          <fieldset>
            <legend>Add Version:</legend>
            <div class="field">
              <label>Name:<br /><input type="text" name="name" id="name" /></label>
            </div>
            <div class="field">
              <label>Released:<br />
                <input type="text" name="time" size="${len(datetime_hint)}"
                       title="Format: $datetime_hint"
                       value="${format_datetime()}" /><br />
                <em>Format: $datetime_hint</em>
              </label>
            </div>
            <div class="buttons">
              <input type="submit" name="add" value="Add" />
            </div>
          </fieldset>
        </form>

        <py:choose>
          <form py:when="versions" id="version_table" method="post" action="">
            <table class="listing" id="verlist">
              <thead>
                <tr><th class="sel">&nbsp;</th>
                  <th>Name</th><th>Released</th><th>Default</th>
                </tr>
              </thead>
              <tbody>
                <tr py:for="version in versions">
                  <td><input type="checkbox" name="sel" value="${version.name}"/></td>
                  <td><a href="${panel_href(version.name)}">${version.name}</a></td>
                  <td>${version.time and format_datetime(version.time)}</td>
                  <td class="default">
                    <input type="radio" name="default" value="${version.name}"
                           checked="${version.name==default or None}" />
                  </td>
                </tr>
              </tbody>
            </table>
            <div class="buttons">
              <input type="submit" name="remove" value="Remove selected items" />
              <input type="submit" name="apply" value="Apply changes" />
            </div>
            <p class="help">
              You can remove all items from this list to completely hide this
              field from the user interface.
            </p>
          </form>

          <p py:otherwise="" class="help">
            As long as you don't add any items to the list, this field
            will remain completely hidden from the user interface.
          </p>
        </py:choose>
      </py:otherwise>
    </py:choose>
  </body>

</html>