2 |
3 | {% for key, value in target_form.source %}
4 |
7 | {% endfor %}
8 |
9 |
10 |
--------------------------------------------------------------------------------
/apps/exploit/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/apps/exploit/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf.urls import url
2 |
3 | from . import views
4 |
5 | app_name = 'exploit'
6 | urlpatterns = [
7 | url(r'^$', views.IndexView.as_view(), name='index'),
8 | url(r'^(?P