Add app_registry and bootstrap apps

This commit is contained in:
Roberto Rosario
2012-10-05 03:03:21 -04:00
parent ade876141e
commit d2f1490516
23 changed files with 673 additions and 1 deletions

28
apps/bootstrap/forms.py Normal file
View File

@@ -0,0 +1,28 @@
from __future__ import absolute_import
import logging
from django import forms
from django.utils.translation import ugettext_lazy as _
from common.forms import DetailForm
from .models import BootstrapSetup
logger = logging.getLogger(__name__)
class BootstrapSetupForm(forms.ModelForm):
class Meta:
model = BootstrapSetup
class BootstrapSetupForm_view(DetailForm):
class Meta:
model = BootstrapSetup
class BootstrapSetupForm_dump(forms.ModelForm):
class Meta:
model = BootstrapSetup
exclude = ['fixture']