Skip to content
Snippets Groups Projects
Commit 8bcb342f authored by Dan Braghis's avatar Dan Braghis Committed by Todd Dembrey
Browse files

Clean up

parent 748c7178
No related branches found
No related tags found
No related merge requests found
from django.contrib import admin
# Register your models here.
......@@ -8,6 +8,7 @@ RECOMMENDATION_CHOICES = (
(2, 'Maybe')
)
class Review(models.Model):
submission = models.ForeignKey('funds.ApplicationSubmission', on_delete=models.CASCADE)
author = models.ForeignKey(
......
from django.test import TestCase
# Create your tests here.
from django.urls import include, path
from .funds import urls as funds_urls
from .users import urls as users_urls
from .dashboard import urls as dashboard_urls
urlpatterns = [
path('apply/', include(funds_urls)),
path('apply/', include('opentech.apply.funds.urls', 'apply')),
path('account/', include(users_urls)),
path('dashboard/', include(dashboard_urls)),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment