Blame view

app/main/templates/project.html 548 Bytes
d7a4e41b   hitier   New project page:...
1
2
3
{% extends "base_page.html" %}

{% block more_heads %}
11b5b6f8   hitier   Fix css file path
4
<link href="{{ url_for('main.static', filename='css/charges.css') }}" rel="stylesheet" type="text/css"/>
d7a4e41b   hitier   New project page:...
5
6
7
{% endblock %}

{% block content %}
0d6506cb   hitier   New project_charg...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<table id="charge_table">
  <thead>
  <tr>
    {% for header in charges[0] %}
    <td>{{header}}</td>
    {% endfor %}
  </tr>
  </thead>
  <tbody>
  {% for line in charges[1:] %}
  <tr>
    {% for cell in line %}
    <td>{{cell}}</td>
    {% endfor %}
  </tr>
  {% endfor %}
  </tbody>
</table>
d7a4e41b   hitier   New project page:...
26
27
28
29
{% endblock %}

{% block more_scripts %}
{% endblock %}