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/bench/migrations/0004_auto_20170715_0325.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 qtip/web/bench/migrations/0004_auto_20170715_0325.py (limited to 'qtip/web/bench/migrations/0004_auto_20170715_0325.py') diff --git a/qtip/web/bench/migrations/0004_auto_20170715_0325.py b/qtip/web/bench/migrations/0004_auto_20170715_0325.py new file mode 100644 index 00000000..74296cce --- /dev/null +++ b/qtip/web/bench/migrations/0004_auto_20170715_0325.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.3 on 2017-07-15 03:25 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('bench', '0003_auto_20170713_0225'), + ] + + operations = [ + migrations.AlterField( + model_name='repo', + name='name', + field=models.CharField(max_length=200), + ), + ] -- cgit 1.2.3-korg