From 0fd661ea6bae299b69e65f90966304012eb794d2 Mon Sep 17 00:00:00 2001 From: akhilbatra898 Date: Sat, 15 Jul 2017 09:44:23 +0530 Subject: Add Authentication and Basic CRUD for Repos - Map urls to the CRUD views - Add html templates for the views - Set authentication settings Change-Id: Ifcfe39a8341d44376e322d195e995fcaa1716d7d Signed-off-by: akhilbatra898 --- qtip/web/templates/bench/repo_form.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 qtip/web/templates/bench/repo_form.html (limited to 'qtip/web/templates/bench/repo_form.html') diff --git a/qtip/web/templates/bench/repo_form.html b/qtip/web/templates/bench/repo_form.html new file mode 100644 index 00000000..109436a9 --- /dev/null +++ b/qtip/web/templates/bench/repo_form.html @@ -0,0 +1,15 @@ +{% extends 'bench/base.html' %} +{% block content %} +
+

Repos

+ {% for repo in repos %} +
  • {{ repo.name }}
  • + {% endfor %} +
    +
    {% csrf_token %} + {{ form }} +
    + +
    +
    +{% endblock %} -- cgit 1.2.3-korg