Remove unused module

This commit is contained in:
Kumi 2019-02-02 13:03:28 +00:00
parent d673ce311d
commit 79b7b2f8cd
3 changed files with 2 additions and 4 deletions

View file

@ -77,6 +77,6 @@
{% include "two_factor/_wizard_actions.html" %}
</form>
<p><a href="{% url 'password_reset_recover' %}">Lost password?</a></p>
<p><a href="{% url 'password_reset' %}">Lost password?</a></p>
{% endblock %}

View file

@ -28,7 +28,6 @@ INSTALLED_APPS = [
'django_otp.plugins.otp_totp',
'two_factor',
'django_cron',
'password_reset',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',

View file

@ -13,6 +13,5 @@ urlpatterns = [
url(r'', include(tf_urls)),
path('', include('manager.urls')),
path('admin/', admin.site.urls),
path('accounts/', include('django.contrib.auth.urls')),
url(r'', include('password_reset.urls'))
path('accounts/', include('django.contrib.auth.urls'))
]