Accessing Inline data on template

I have a project that contains an app (Award) with multiple models. The main model is called Award and the secondary is called AwardStatus.
Award model does the following, it allows a user who has the appropriate permissions to add, change, delete or view the first and last name and 4 other types of data of an award that is added to the database. AwardStatus allows staff members to type status updates or comments and attach them to the Award model above. The Award model is working good, I just need assistance getting the AwardStatus to link to the appropriate Award. I am currently using TabularInline to do this. I am not allowing users to use the admin page. I am unsure how or if its possible to access TabularInline data on the template. I don’t mean POST to TabularInline but view it properly.

I have a table row with a lastname, firstname of Gator, Allie and another row with a lastname, firstname of O’Furniture, Paddy. If I make a comment using the Admin page inline its attached to Gator, Allie on my html template its showing the most recent comment/status on both Gator and O’Furniture.


(The awards_index.html will display the current status/comment that has been posted, on the detail page, it will show a list (newest → oldest) status/comment.)

snippet of html table

<div class="card mb-4">
                <div class="card-body">
                    <div class="table-responsive vh100">
                        <table class="table table-hover table-sm #table-bordered align-middle" width="100%" cellspacing="0">
                            <thead class="bg-primary table-header text-center text-white">
                                <tr>
                                    <th class="align-middle">Unit</th>
                                    <th class="align-middle">Rank</th>
                                    <th class="align-middle">Name</th>
                                    <th class="align-middle">Award</th>
                                    <th class="align-middle">Reason</th>
                                    <th class="align-middle">Recieved</th>
                                    <th class="align-middle">Pres. Date</th>
                                    <th class="align-middle">Letter of Lateness</th>
                                    <th class="align-middle">Sent to Higher</th>
                                    <th class="align-middle">Updated By</th>
                                    <th class="align-middle">Status</th>
                                </tr>
                            </thead>
                            <tbody class="text-center align-middle">
                            {% for award in awards %}
                                <tr class="clickable" style="cursor: pointer;" onclick="window.location='{{ award.get_absolute_url }}'">
                                    <td class="align-middle">{{ award.get_unit_display }}</td>
                                    <td class="align-middle">{{ award.get_rank_display }}</td>
                                    <td class="align-middle">{{ award.last_name|title }}, {{ award.first_name|title }}</td>
                                    <td class="align-middle">{{ award.recommended_award }}</td>
                                    <td class="align-middle">{{ award.get_award_reason_display }}</td>
                                    <td class="align-middle">{{ award.date_received|date:"m-d-Y" }}</td>
                                    <td class="align-middle">{{ award.presentation_date|date:"m-d-Y" }}</td>
                                    {% if award.letter_of_lateness == False %}
                                        <td class="align-middle"><i class="bi bi-x-lg text-danger text-bold"></i></td>
                                    {% elif award.letter_of_lateness == None %}
                                        <td class="align-middle">Unk</td>
                                    {% else %}
                                        <td class="align-middle"><i class="bi bi-check-lg text-success text-bold"></i></td>
                                    {% endif %}
                                    <td class="align-middle">{{ award_date_sent_higher|date:"m-d-Y" }}</td>
                                    <td class="align-middle">{{ status_update.status_by|title }}</td>
                                    <td class="align-middle">{{ status_update.status }}</td>
                                </tr>
                            {% endfor %}  
                            </tbody>
                        </table>
                    </div>
                </div>
            </div>

models.py

class Award(models.Model):
    date_created = models.DateTimeField(auto_now_add=True)
    date_modified = models.DateTimeField(auto_now=True)
    first_name = models.CharField(max_length=50, verbose_name="First Name")
    last_name = models.CharField(max_length=50, verbose_name="Last Name")
    rank = models.CharField(max_length=5, default=None, choices=RANK_CHOICES)
    unit = models.CharField(max_length=6, default=None, choices=UIC_CHOICES)
    recommended_award = models.CharField(max_length=5, default=None, choices=RECOMMENDED_AWARD)
    award_reason = models.CharField(max_length=3, default=None, choices=AWARD_REASON)
    date_received = models.DateField(blank=True, null=True, default=None, verbose_name="Date Received")
    presentation_date = models.DateField(blank=True, null=True, default=None, verbose_name="Presentation Date")
    letter_of_lateness = models.BooleanField(blank=True, null=True, verbose_name="Letter of Lateness Required?")
    date_sent_higher = models.DateField(blank=True, null=True, default=None, verbose_name="Date Submitted to 20th")   
    is_complete = models.BooleanField(blank=True, null=True, default=False, verbose_name="Award Complete?")
    submitted_by = models.ForeignKey(User, null=True, on_delete=models.SET_NULL)

    def __str__(self):
        return self.last_name + ' ' + str(self.date_created)[:10]

    def get_absolute_url(self):
        return reverse("award_detail", args=[str(self.pk)])

    @property
    def static_image_url(self) -> str:
        return static(f'rank_images/{ self.rank }.png')

class AwardStatus(models.Model):
    date_created = models.DateTimeField(auto_now_add=True)
    status = models.TextField(max_length=200)
    link_Award = models.ForeignKey(Award, null=True, on_delete=models.DO_NOTHING)
    status_by = models.ForeignKey(User, null=True, on_delete=models.DO_NOTHING)

    def __str__(self):
        return str(self.status_by) + ' ' + self.status[:50]+'...'

admin.py

from django.contrib import admin

# Register your models here.
from .models import Award, AwardStatus


class AwardStatusInline(admin.TabularInline):
        model = AwardStatus

class AwardAdmin(admin.ModelAdmin):
    
    inlines = [
        AwardStatusInline,
    ]

    list_display = ('last_name', 'first_name', 'rank', 'unit', 'recommended_award', 'award_reason', 'date_created', 'date_modified')
    list_filter = ['rank', 'recommended_award', 'award_reason', 'unit']
    search_fields = ['last_name', 'first_name', 'rank', 'recommended_award',  'award_reason', 'unit']

admin.site.register(Award, AwardAdmin)

views.py

login_success = "Login Successful."
login_error = "Login Unsuccessful. Try again or contact site administrator."

def error_404(request, exception):
        data = {}
        return render(request,'dashboard/404.html', data)

@login_required
def awards_index(request):

    awards = Award.objects.all().order_by('-date_created')
    status_update = AwardStatus.objects.all().order_by('-date_created')[0]

    context = {
        'awards': awards,
        'status_update': status_update,
    }

    if request.method == 'POST':
        username = request.POST['username']
        password = request.POST['password']

        # Authenticate
        user = authenticate(request, username=username, password=password)

        if user is not None:
            login(request, user)
            messages.success(request, login_success)
            return redirect('awards_index')
        else:
            messages.error(request, login_error)
            return redirect('home')
    else:
        return render(request, 'awards/awards_index.html', context)

@login_required
@permission_required('awards.add_award')
def add_award(request):
    form = AddAwardForm(request.POST or None)
    if request.user.is_authenticated:
        if request.method == "POST":
            if form.is_valid():
                add_award = form.save(commit=False)
                add_award.submitted_by = request.user
                add_award.save()
                return redirect('awards_index')
            messages.success(request, "Award Added")
        return render(request, 'awards/add_award.html', {'form':form})
    else:
        messages.success(request, "Must be logged in to add award.")
        return redirect('awards_index')

@login_required
@staff_member_required
@permission_required('awards.delete_award')
def delete_award(request, pk):
    if request.user.is_authenticated:
        delete_award = Award.objects.get(id=pk)
        delete_award.delete()
        messages.success(request, 'Award record has been deleted.')
        return redirect('awards_index')
    else:
        messages.error(request, 'Login and special permission is required to delete an award.')
        return redirect('home')

@login_required
@permission_required('awards.view_award')
def award_detail_view(request, pk):
    person_award = Award.objects.get(id=pk)

    return render(request, 'awards/award_detail.html', context={'person_award': person_award})

I hope this was enough information to get this sorted out. Thank you!