| 1 | [% INCLUDE header.tt page_title = "Wanted Pages - $site_name" %] |
|---|
| 2 | [% INCLUDE banner.tt %] |
|---|
| 3 | <div id="content"> |
|---|
| 4 | [% INCLUDE navbar.tt %] |
|---|
| 5 | <div id="maincontent"> |
|---|
| 6 | <h1>Wanted Pages</h1> |
|---|
| 7 | <p> |
|---|
| 8 | These are nodes which have been linked to but do not yet exist. |
|---|
| 9 | </p> |
|---|
| 10 | <table id="wanted_pages"> |
|---|
| 11 | <tr><th>Node name</th><th>Number of backlinks</th><th>Action</th></tr> |
|---|
| 12 | [% FOREACH node = wanted %] |
|---|
| 13 | <tr> |
|---|
| 14 | <td>[% node.name %]</td> |
|---|
| 15 | <td>[% node.backlinks_count %]</td> |
|---|
| 16 | <td><a href="[% node.backlink_link %]">Show linking nodes</a> |
|---|
| 17 | or <a href="[% node.edit_link %]">Create node</a> |
|---|
| 18 | </td> |
|---|
| 19 | </tr> |
|---|
| 20 | [% END %] |
|---|
| 21 | </table> |
|---|
| 22 | |
|---|
| 23 | </div> |
|---|
| 24 | [% INCLUDE footer.tt %] |
|---|