1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
---|
2 | <html xmlns="http://www.w3.org/1999/xhtml" |
---|
3 | xmlns:py="http://genshi.edgewall.org/" |
---|
4 | xmlns:xi="http://www.w3.org/2001/XInclude"> |
---|
5 | <xi:include href="layout.html" /> |
---|
6 | <xi:include href="atom_functions.html" /> |
---|
7 | <head> |
---|
8 | <title py:content="c.title">title</title> |
---|
9 | </head> |
---|
10 | <body class="submit"> |
---|
11 | <panelTab>Details</panelTab> |
---|
12 | <div id="contents"> |
---|
13 | <div class="metadata"> |
---|
14 | <a href="${h.url_for(controller='listatom',action='atomHome')}">Home</a> |
---|
15 | <h3> $c.title </h3> |
---|
16 | <table> |
---|
17 | <tr><td>Data Type:</td><td>$c.atom.atomTypeName</td></tr> |
---|
18 | <tr><td>Provider ID:</td><td>$c.atom.ME.providerID</td></tr> |
---|
19 | <tr><td>Created:</td><td>$c.atom.publishedDate</td></tr> |
---|
20 | <tr><td>Last updated:</td><td>$c.atom.updatedDate</td></tr> |
---|
21 | </table> |
---|
22 | <div class="headingblock"> |
---|
23 | |
---|
24 | <h4> Mandatory Material </h4> |
---|
25 | <form action="${c.saveLink}" method="post"> |
---|
26 | <table summary="" width="100%"><tr> |
---|
27 | <td class="cellhead" width="10%">Title:</td> |
---|
28 | <td class="column"> |
---|
29 | ${Markup(h.text_field('title',c.atom.title, size="120"))} |
---|
30 | <span py:if="'title' in c.errors" class="error">${c.errors.title}</span> |
---|
31 | </td> |
---|
32 | </tr> |
---|
33 | <span py:if="len(c.subTypes) > 0" py:strip=""> |
---|
34 | <tr> |
---|
35 | <td class="cellhead">Sub-Type:</td> |
---|
36 | <td> |
---|
37 | ${Markup(h.select('subtype',option_tags=c.subTypes))} |
---|
38 | </td> |
---|
39 | </tr> |
---|
40 | </span> |
---|
41 | <tr> |
---|
42 | <td></td> |
---|
43 | <td> |
---|
44 | <input type="submit" value="Update" /> |
---|
45 | <input type="submit" name="cancel" value="Cancel" /> |
---|
46 | </td> |
---|
47 | </tr></table> |
---|
48 | </form> |
---|
49 | </div> |
---|
50 | |
---|
51 | <h4> Summary </h4> |
---|
52 | <div py:replace="txtBlkEd('Summary',c.atom.Summary,'absDiv', |
---|
53 | c.saveLink2)" id="absDiv"/> |
---|
54 | <div py:replace="OnlineReferences(c.atom.relatedLinks)"/> |
---|
55 | <div py:replace="People('Author', [c.atom.author], c.saveLink)"/> |
---|
56 | <div py:replace="People('Contributors', c.atom.contributors, c.saveLink)"/> |
---|
57 | <div py:replace="FullParameterList(c.atom.parameters)"/> |
---|
58 | <div py:replace="Coverage(c.saveLink)"/> |
---|
59 | <div py:replace="FullDeployments(c.atom.ME.deployments)"/> |
---|
60 | <div py:replace="People('Responsible Parties', |
---|
61 | c.atom.ME.responsibleParties, c.saveLink)"/> |
---|
62 | </div> |
---|
63 | </div> |
---|
64 | </body> |
---|
65 | </html> |
---|