diff --git a/issue/templates/login.html b/issue/templates/login.html
index 52b040b..18c3979 100644
--- a/issue/templates/login.html
+++ b/issue/templates/login.html
@@ -1,6 +1,6 @@
{% extends 'base.html' %}
-{% load bootstrap_tags %}
+{% load bootstrap3 %}
{% block content %}
@@ -18,7 +18,7 @@
diff --git a/ponytracker/settings.py b/ponytracker/settings.py
index bb23d4c..6dfa3f9 100644
--- a/ponytracker/settings.py
+++ b/ponytracker/settings.py
@@ -42,7 +42,7 @@ INSTALLED_APPS = (
'django_markdown',
'bootstrap3_datetime',
- 'django_forms_bootstrap',
+ 'bootstrap3',
'colorful',
'issue',
)
@@ -129,3 +129,23 @@ EMAIL_HOST = 'smtp'
#FROM_ADDR = 'ponytracker@example.com'
BASE_URL = 'http://localhost:8000'
+
+BOOTSTRAP3 = {
+
+ # The URL to the jQuery JavaScript file
+ #'jquery_url': '//code.jquery.com/jquery.min.js',
+ 'jquery_url': STATIC_URL + 'js/jquery.min.js',
+
+ # The Bootstrap base URL
+ #'base_url': '//netdna.bootstrapcdn.com/bootstrap/3.2.0/',
+ 'base_url': STATIC_URL,
+
+ # The complete URL to the Bootstrap CSS file (None means derive it from base_url)
+ 'css_url': None,
+
+ # The complete URL to the Bootstrap CSS file (None means no theme)
+ 'theme_url': None,
+
+ # The complete URL to the Bootstrap JavaScript file (None means derive it from base_url)
+ 'javascript_url': None,
+}
diff --git a/requirements.txt b/requirements.txt
index 124cb24..17a2537 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,5 +1,5 @@
django
django-markdown
django-colorful
-git+git://github.com/bouttier/django-forms-bootstrap.git@master
+django-bootstrap3
django-bootstrap3-datetimepicker