2020-11-07 14:34:48 +00:00
|
|
|
<!--
|
|
|
|
Copyright 2020 Google LLC
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
2020-11-16 18:45:31 +00:00
|
|
|
<div class="listing">
|
|
|
|
<h1> Subnodes </h1>
|
2020-11-16 14:51:34 +00:00
|
|
|
{% if not subnodes %}
|
|
|
|
No subnodes found for the given term or path.
|
|
|
|
<br /><br />
|
|
|
|
Go back to <a href="/nodes">/nodes</a>?
|
|
|
|
{% endif %}
|
|
|
|
|
2020-11-10 21:48:20 +00:00
|
|
|
{% for subnode in subnodes %}
|
2020-11-16 19:43:30 +00:00
|
|
|
@{{subnode.user}} subnoded <a href="{{subnode.url}}">{{subnode.wikilink}}</a>.<br />
|
2020-11-07 14:34:48 +00:00
|
|
|
{% endfor %}
|
2020-11-16 18:45:31 +00:00
|
|
|
</div>
|
|
|
|
|
2020-11-07 14:34:48 +00:00
|
|
|
{% endblock %}
|