|
Revision 645, 0.6 kB
(checked in by dom, 3 years ago)
|
|
Display number of linking nodes in wanted pages list (RT #9286).
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 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 | <h2>Wanted Pages</h2> |
|---|
| 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 %] |
|---|