--- a/ForgeSCM/forgescm/templates/index.html
+++ b/ForgeSCM/forgescm/templates/index.html
@@ -18,5 +18,15 @@
<p>
Your repository is <em>${c.app.repo.status}</em>
</p>
+ <a href="reinit">Reinitialize the repository</a><br/>
+ <form method="POST" action="clone_from">
+ Clone the repo from <input name="url"/>
+ </form>
+ <h3>Recent Commits</h3>
+ <p py:for="ct in repo.commits()">
+ <a href="${ct.url()}"><code>$ct.hash</code></a>
+ by <em>$ct.user</em> at $ct.date<br/>
+ $ct.summary
+ </p>
</body>
</html>