/src/economy/templates/contract/show.html
HTML | 60 lines | 49 code | 8 blank | 3 comment | 0 complexity | 73da835b0d811c468453743f29f7173c MD5 | raw file
- {% extends "base.html" %}
- {% load currency %}
- {% block extra_headers %}
- {% if quickedit %}
- <script src="/static/scripts/jquery.color.js" type="text/javascript"></script>
- <script src="/static/scripts/quickedit.js" type="text/javascript"></script>
- {% endif %}
- {% endblock %}
- {% block bodyparams %}{% if quickedit %}onbeforeunload="return checkOutstandingRequests()"{% endif %}{% endblock %}
- {% block help %}
-
- {% endblock %}
- {% block content %}
-
- <div class="inner">
- <h1>{{ pagetitle }}</h1>
- <table class="datatable">
- {% if contract.category %}
- <tr>
- <th>Kategori:</th>
- <td>{{ contract.category }}</td>
- </tr>
- {% endif %}
- <tr>
- <th>Selskap:</th>
- <td>{{ contract.company }}</td>
- </tr>
- <tr>
- <th>Budsjett:</th>
- <td>{{ contract.budget|currency }}</td>
- </tr>
- <tr>
- <th>Kontraktsbel?¸p:</th>
- <td>{{ contract.amount|currency }}</td>
- </tr>
- <tr>
- <th>Kommentar:</th>
- <td>{{ contract.comment }}</td>
- </tr>
- </table>
-
- <p>
- <a href="{{ contract.project.get_absolute_url }}">« Tilbake til oversikten</a> |
- <a href="{{ contract.get_edit_url }}">Redig?Šr kontrakt</a>
- </p>
- </div>
-
- {% include "contract/list_for_contract.html" %}
- {% if highlight %}
- <script type="text/javascript">
- <!--
- highlight("tr#{{ highlight }}", "#ccffcc");
- // -->
- </script>
- {% endif %}
- {% endblock %}