{% extends 'apps_base.html' %} {% block title %}Information{% endblock %} {% block apps_base_title %}Information{% endblock %} {% block apps_base_stylesheets %} {% endblock %} {% block apps_base_content %}
Basic information
Full Name Age
{{ full_name }} {{ age }}
{% if workplaces %}
Workplaces
{% for workplace in workplaces %} {{ workplace.name }} {% endfor %}
{% else %}
No joined workplaces!

You can join in one.

{% endif %} {% if owned_companies %}
Owned Companies
{% for company in owned_companies %} {{ company.name }} {% endfor %}
{% else %}
No owned companies!

You can create one.

{% endif %} {% if salary_records %} {% for salary_record in salary_records %}
Salary in Company {{ salary_record.company.name }}
Base Salary Bonus Total
{{ salary_record.base_salary }} {{ salary_record.bonus }} {{ salary_record.total }}
{% endfor %} {% else %}
No salary information!

Join in or create new companies to get your own money.

{% endif %} {% endblock %}