{% extends 'base.html' %}
{% load static %}
{% load custom_tags_to %}
{% block title %}
{% if request.user|user_group == "admin" %}
{% endif %}
TO No. |
Name |
Position |
Division/Section |
Official Station |
Date Created |
Travel Dates |
Destination |
Purpose |
{% for to in tos %}
{{ to.to_number }}
|
{{ to | get_personnel_info:"name" }} |
{{ to | get_personnel_info:"position" }} |
{{ to | get_personnel_info:"division" }} |
{{ to | get_personnel_info:"station" }} |
{{ to.to_date }} |
{{ to | travel_date }} |
{{ to.to_destination }} |
{{ to.to_purpose }} |
{% endfor %}
{% endblock %}
{% block scripts %}
{% endblock %}