rietveld/templates/repo_new.html

15 lines
363 B
HTML
Raw Permalink Normal View History

{%extends "repos_base.html"%}
{%block title1%}Add Repository -{%endblock%}
{%block body%}
<h2>Create New Repository</h2>
<form action="{%url codereview.views.repo_new%}" method="post">
<input type="hidden" name="xsrf_token" value="{{xsrf_token}}">
<table>
{{form}}
<tr><td><input type="submit" value="Create Repository"></td></tr>
</table>
</form>
{%endblock%}