{% extends "base.html" %} {% load i18n staticfiles wger_extras django_bootstrap_breadcrumbs %} {% block title %}{{current_user|format_username}}{% endblock %} {% block breadcrumbs %} {{ block.super }} {% if perms.gym.manage_gyms %} {% breadcrumb "Gyms" "gym:gym:list" %} {% endif %} {% breadcrumb_raw current_user.userprofile.gym "gym:gym:user-list" current_user.userprofile.gym.pk %} {% breadcrumb_raw current_user|format_username "core:user:overview" current_user.pk %} {% endblock %} {% block content %} {% url 'core:user:trainer-login' current_user.pk as trainer_login %}
{% trans "Date" %} | {% trans "Description" %} | {% trans "Number of logs (days)" %} | {% trans "Last activity" %} |
---|---|---|---|
{{workout.workout.creation_date}} | {{workout.workout}} | {{workout.logs|default:'-/-'}} | {{workout.last_log.date|default:'-/-'}} |
{% trans "No workouts found." %} |
{% trans "Date" %} | {% trans "General impression" %} | {% trans "Notes" %} | {% trans "Time" %} |
---|---|---|---|
{{log.date}} | {{log.get_impression_display}} | {{log.notes|truncatewords:6|default:'-/-'}} | {% if log.time_start and log.time_end %} {{log.time_start|time:"H:i"}} - {{log.time_end|time:"H:i"}} {% else %} -/- {% endif %} |
{% trans "Nothing found" %} |
{% trans "Date" %} | {% trans "Weight" %} | |
---|---|---|
{{weight.date}} | {{weight.weight}} {% trans_weight_unit 'kg' current_user %} | |
{% trans "Nothing found" %} |
{% trans "Date" %} | {% trans "Description" %} | {% trans "Energy" %} | {% trans "Protein" %} | {% trans "Carbohydrates" %} | {% trans "Fat" %} |
---|---|---|---|---|---|
{{nutrition_plan.creation_date}} | {{nutrition_plan}} | {{nutrition_plan.get_nutritional_values.total.energy|floatformat}} {% trans "kcal" %} | {{nutrition_plan.get_nutritional_values.total.protein|floatformat}} {% trans_weight_unit 'g' current_user %} | {{nutrition_plan.get_nutritional_values.total.carbohydrates|floatformat}} {% trans_weight_unit 'g' current_user %} | {{nutrition_plan.get_nutritional_values.total.fat|floatformat}} {% trans_weight_unit 'g' current_user %} |
{% trans "Nothing found" %} |
{% trans "Nr." %} | {{current_user.pk}} |
{% trans "Name" %} | {{current_user.first_name}} |
{% trans "Last name" %} | {{current_user.last_name}} |
{% trans "Email" %} | {% if current_user.email %} {{current_user.email}} {% else %} -/- {% endif %} |
{% trans "Registered" %} | {{current_user.date_joined}} |
{% trans "Last login" %} | {{current_user.last_login}} |
{% trans "Status" %} | {% if current_user.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} |
{{ note.timestamp_created }} | {{ note.note|truncatewords:10 }} |
{% trans "Nothing found" %} |
{{ document.timestamp_created }} | {{ document.name }} | |
{% trans "Nothing found" %} |
{% trans 'Include in inactive overview' %} | {% if current_user.gymuserconfig.include_inactive %} {% else %} {% endif %} |
---|