Skip to content

Commit

Permalink
Added file name comments to exchange files
Browse files Browse the repository at this point in the history
  • Loading branch information
rladdusaw committed Jul 26, 2016
1 parent 30080a8 commit 613c3b0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions exchange/forms.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# /exchange/forms.py

from django.forms import ModelForm

from crispy_forms.bootstrap import FormActions
Expand Down
2 changes: 2 additions & 0 deletions exchange/models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# /exchange/models.py

from django.contrib.auth.models import User
from django.db import models

Expand Down
2 changes: 2 additions & 0 deletions exchange/tests/tests.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# /exchange/tests/tests.py

from django.test import TestCase

# Create your tests here.
2 changes: 2 additions & 0 deletions exchange/urls.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# /exchange/urls.py

from django.conf.urls import url

from .views import ExchangeCreateView, ExchangeDetailView
Expand Down
2 changes: 2 additions & 0 deletions exchange/views.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# /exchange/views.py

from django.contrib.auth.models import User
from django.http import HttpResponseRedirect
from django.shortcuts import render
Expand Down

0 comments on commit 613c3b0

Please sign in to comment.