yig/franklincce/explorer/templates/explorer/legislation.html
2024-06-21 03:03:46 -05:00

25 lines
721 B
HTML

{% extends "explorer/base.html" %}
{% block content %}
<div id="legcontainer">
<div id="leginfo" class="boxed">
<h1 class="no-margin-top wrapword">{{ legislation.legislation_title }}</h1>
<i>{{ legislation.assembly }}/{{ legislation.committee }}/{{ legislation.docket_order }}</i>
<p>Sponsored by {{ legislation.sponsors }} of {{ legislation.school }}</p>
</div>
<div id="legislation" class="boxed">
<table>
{% for line in lines %}
<tr>
<td class="legnumbers">{{ line.linenumber }}</td>
<td>{{ line.linetext }}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endblock content %}