Changeset - 6f3a145847f4
[Not reviewed]
0 0 6
Branko Majic (branko) - 10 years ago 2015-09-10 22:09:36
branko@majic.rs
MDT-2: Adding clean skeleton for a bootstrap application template.
6 files changed with 12 insertions and 0 deletions:
0 comments (0 inline, 0 general)
app_bootstrap/__init__.py
Show inline comments
 
new file 100644
app_bootstrap/admin.py
Show inline comments
 
new file 100644
 
from django.contrib import admin
 

	
 
# Register your models here.
app_bootstrap/migrations/__init__.py
Show inline comments
 
new file 100644
app_bootstrap/models.py
Show inline comments
 
new file 100644
 
from django.db import models
 

	
 
# Create your models here.
app_bootstrap/tests.py
Show inline comments
 
new file 100644
 
from django.test import TestCase
 

	
 
# Create your tests here.
app_bootstrap/views.py
Show inline comments
 
new file 100644
 
from django.shortcuts import render
 

	
 
# Create your views here.
0 comments (0 inline, 0 general)