コード例 #1
0
ファイル: user_tags.py プロジェクト: Acidburn0zzz/lernanta
def profile_info(context):
    profile = context['profile']

    current_projects = profile.get_current_projects(only_public=True)
    users_following = profile.following()
    users_followers = profile.followers()

    interests = profile.tags.filter(category='interest').exclude(
        slug='').order_by('name')
    desired_topics = profile.tags.exclude(slug='').filter(
        category='desired_topic').order_by('name')
    skills = profile.tags.filter(category='skill').exclude(
        slug='').order_by('name')
    past_projects = profile.get_past_projects(only_public=True)
    past_drupal_courses = projects_drupal.get_past_courses(
        profile.username)
    past_involvement_count = len(past_projects) + len(past_drupal_courses)
    badges = get_awarded_badges(profile.user).values()
    badges_count = len(badges)

    context.update({
        'current_projects': current_projects,
        'users_following': users_following,
        'users_followers': users_followers,
        'skills': skills,
        'interests': interests,
        'desired_topics': desired_topics,
        'past_projects': past_projects,
        'past_drupal_courses': past_drupal_courses,
        'past_involvement_count': past_involvement_count,
        'badges': badges,
        'badges_count': badges_count,
    })
    return context
コード例 #2
0
ファイル: user_tags.py プロジェクト: mkcode/lernanta
def profile_info(context):
    profile = context['profile']

    current_projects = profile.get_current_projects(only_public=True)
    users_following = profile.following()
    users_followers = profile.followers()

    interests = profile.tags.filter(category='interest').exclude(
        slug='').order_by('name')
    desired_topics = profile.tags.exclude(slug='').filter(
        category='desired_topic').order_by('name')
    skills = profile.tags.filter(category='skill').exclude(
        slug='').order_by('name')
    past_projects = profile.get_past_projects(only_public=True)
    past_drupal_courses = projects_drupal.get_past_courses(profile.username)
    past_involvement_count = len(past_projects) + len(past_drupal_courses)
    badges = get_awarded_badges(profile.user).values()
    badges_count = len(badges)

    context.update({
        'current_projects': current_projects,
        'users_following': users_following,
        'users_followers': users_followers,
        'skills': skills,
        'interests': interests,
        'desired_topics': desired_topics,
        'past_projects': past_projects,
        'past_drupal_courses': past_drupal_courses,
        'past_involvement_count': past_involvement_count,
        'badges': badges,
        'badges_count': badges_count,
    })
    return context
コード例 #3
0
ファイル: views.py プロジェクト: queerpedagogue/lernanta
def badges_manage(request):
    profile = request.user.get_profile()
    badges_help_url = "http://help.p2pu.org/kb/learning/what-are-badges"
    has_badges = get_awarded_badges(profile.user)
    badges_url = reverse('badges_list')
    context = {
        'profile': profile,
        'obi_url': settings.MOZBADGES['hub'],
        'badges_help_url': badges_help_url,
        'badges_url': badges_url,
        'has_badges': has_badges,
        'badges_tab': True,
    }
    return render_to_response('badges/profile_badges_manage.html',
        context, context_instance=RequestContext(request))
コード例 #4
0
ファイル: views.py プロジェクト: mkcode/lernanta
def badges_manage(request):
    profile = request.user.get_profile()
    badges_help_url = "http://help.p2pu.org/kb/learning/what-are-badges"
    has_badges = get_awarded_badges(profile.user)
    badges_url = reverse('badges_list')
    context = {
        'profile': profile,
        'obi_url': settings.MOZBADGES['hub'],
        'badges_help_url': badges_help_url,
        'badges_url': badges_url,
        'has_badges': has_badges,
        'badges_tab': True,
    }
    return render_to_response('badges/profile_badges_manage.html',
        context, context_instance=RequestContext(request))
コード例 #5
0
ファイル: user_tags.py プロジェクト: toolness/lernanta
def user_sidebar(context, max_people_count=64):
    profile = context['profile']
    profile_view = context['profile_view']

    current_projects = profile.get_current_projects(only_public=profile_view)
    users_following = profile.following()
    users_followers = profile.followers()

    interests = profile.tags.filter(category='interest').exclude(
        slug='').order_by('name')
    desired_topics = profile.tags.exclude(slug='').filter(
        category='desired_topic').order_by('name')

    links = Link.objects.filter(user=profile,
        project__isnull=True).order_by('index')

    # only display non actionable items on the profile.
    skills = past_projects = past_drupal_courses = badges = pilot_badges = []
    past_involvement_count = badges_count = 0
    if profile_view:
        skills = profile.tags.filter(category='skill').exclude(
            slug='').order_by('name')
        past_projects = profile.get_past_projects(only_public=profile_view)
        past_drupal_courses = projects_drupal.get_past_courses(
            profile.username)
        past_involvement_count = len(past_projects) + len(past_drupal_courses)
        pilot_badges = get_awarded_badges(profile.user).values()
        badge_awards = Award.objects.filter(
            user=profile).values('badge_id')
        badges = Badge.objects.filter(id__in=badge_awards)
        badges_count = len(pilot_badges) + badges.count()

    context.update({
        'current_projects': current_projects,
        'users_following': users_following,
        'users_followers': users_followers,
        'skills': skills,
        'interests': interests,
        'desired_topics': desired_topics,
        'links': links,
        'past_projects': past_projects,
        'past_drupal_courses': past_drupal_courses,
        'past_involvement_count': past_involvement_count,
        'badges': badges,
        'pilot_badges': pilot_badges,
        'badges_count': badges_count,
    })
    return context