blob: 03980af977c4509e2a67a67521f347beb1983610 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "base.html" %}
{% block main %}
<h2>Corporations</h2>
{% for corp in corps %}
<a href="/corporation/{{ corp['corporation_id'] }}">
{{ corp['corporation_name'] }}
</a>
{% end %}
{% end %}
|