daks / django-userthemes

A Django user themes application

Clone this repository (size: 66.6 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/daks/django-userthemes/
commit 21: 2f92ac1c1136
parent 20: 7e6abf0f4d64
branch: default
fixing relative imports
eric
10 months ago

Changed (Δ33 bytes):

raw changeset »

userthemes/forms.py (1 lines added, 1 lines removed)

userthemes/urls.py (2 lines added, 2 lines removed)

Up to file-list userthemes/forms.py:

17
17
#  along with this program.  If not, see http://www.gnu.org/licenses/.
18
18
#
19
19
from django.forms import ModelForm
20
from models import UserTheme
20
from userthemes.models import UserTheme
21
21
22
22
class UserThemeForm(ModelForm):
23
23
    """

Up to file-list userthemes/urls.py:

@@ -23,8 +23,8 @@ from django.conf.urls.defaults import *
23
23
from django.contrib.auth.decorators import login_required
24
24
from django.views.generic.list_detail import object_list, object_detail
25
25
26
from models import *
27
from views import *
26
from userthemes.models import *
27
from userthemes.views import *
28
28
29
29
30
30
urlpatterns = patterns('',