From a1a81aaf4b11f6ffcacd0a9609b58d520c48b4c1 Mon Sep 17 00:00:00 2001 From: yomguy Date: Thu, 3 Jan 2013 10:23:45 +0100 Subject: [PATCH] fix bgs --- teleforma/static/teleforma/css/teleforma.css | 6 +++--- teleforma/views/crfpa.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/teleforma/static/teleforma/css/teleforma.css b/teleforma/static/teleforma/css/teleforma.css index bd3e085f..ad07293e 100644 --- a/teleforma/static/teleforma/css/teleforma.css +++ b/teleforma/static/teleforma/css/teleforma.css @@ -552,7 +552,7 @@ color:#FFF; width: 100%; float:left; border-bottom:0px solid #fff; - background:no-repeat url(/static/telemeta/images/tw_hd.png) 0 0; + background: repeat-x url(/static/telemeta/images/tw_hd.png) 0 0; background-color:#ebebeb; background-repeat:repeat; } @@ -1344,7 +1344,7 @@ input,textarea{ #module-set .module { border: 1px solid #000; - background: repeat-y url(/static/telemeta/images/tw_hd.png) 0 0; + background: repeat url(/static/telemeta/images/tw_hd.png) 0 0; padding: 0.2em; margin: 2em 1em 0em 0em; -moz-border-radius: 8px 0px 11px 11px; @@ -1378,7 +1378,7 @@ input,textarea{ #module-set-left .module { border: 1px solid #000; - background: repeat-y url(/static/telemeta/images/tw_hd.png) 0 0; + background: repeat url(/static/telemeta/images/tw_hd.png) 0 0; padding: 0.2em; margin: 0em 0em 1.5em 0em; -moz-border-radius: 8px 0px 11px 11px; diff --git a/teleforma/views/crfpa.py b/teleforma/views/crfpa.py index 42493e43..e83442f0 100644 --- a/teleforma/views/crfpa.py +++ b/teleforma/views/crfpa.py @@ -124,7 +124,7 @@ class UsersView(ListView): context['trainings'] = Training.objects.all() context['iejs'] = IEJ.objects.all() context['courses'] = Course.objects.all() - paginator = NamePaginator(self.object_list, on="last_name", per_page=12) + paginator = NamePaginator(self.object_list, on="last_name", per_page=10) try: page = int(self.request.GET.get('page', '1')) except ValueError: -- 2.39.5