blob: 2d2429461c87e6a16f426ef3a2fd379387d99ce5 [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<title>Go Projects</title>
<link rel="stylesheet" type="text/css" href="static/style.css">
</head>
<body>
<ul class="menu"><li><a href="http://golang.org/">golang.org</a></li></ul>
<h1>Go Projects</h1>
<p>
These are external projects and not endorsed or supported by the Go project.
</p>
<h2>Projects</h2>
<div class="submit">
<h3>Submit a Project</h3>
<p>
Using this form you can submit a project to be included in the list.
</p>
<form action="/project" method="POST">
<table>
<tr><td>Name:<td><input type="text" name="name">
<tr><td>Description:<td><input type="text" name="descr">
<tr><td>URL:<td><input type="text" name="web_url">
<tr><td>&nbsp;<td><input type="submit" value="Send">
{% if submitMsg %}
<tr><td class="msg" colspan="2">{{ submitMsg }}</td></tr>
{% endif %}
</table>
</form>
</div>
<p>
Filter by tag:
{% if tag %}
<a href="/project">all</a>
{% else %}
<b>all</b>
{% endif %}
{% for t in tags %}
{% ifequal t tag %}
<b>{{t}}</b>
{% else %}
<a href="?tag={{t}}">{{t}}</a>
{% endifequal %}
{% endfor %}
</p>
{% for r in projects %}
{% ifchanged r.category %}
{% if not forloop.first %}
</ul>
{% endif %}
<h3>{{r.category}}</h3>
<ul>
{% endifchanged %}
<li{% if not r.approved %} class="unapproved"{% endif %}>
{% if admin %}[<a href="/project/edit?name={{r.name}}">edit</a>]{% endif %}
<a class="name" href="{{r.web_url}}">{{r.name}}</a> - {{r.descr}}
{% for tag in r.tags %}
<span class="tag">{{tag}}</span>
{% endfor %}
</li>
{% if forloop.last %}
</ul>
{% endif %}
{% endfor %}
</ul>
</body>
</html>