|
@@ -18,37 +18,37 @@ limitations under the License.
|
|
|
{% endcomment %}
|
|
{% endcomment %}
|
|
|
{% block title %}Job History{% endblock %}
|
|
{% block title %}Job History{% endblock %}
|
|
|
{% block head %}
|
|
{% block head %}
|
|
|
- <meta http-equiv="refresh" content="5" />
|
|
|
|
|
|
|
+ <meta http-equiv="refresh" content="5" />
|
|
|
{% endblock %}
|
|
{% endblock %}
|
|
|
{% block content %}
|
|
{% block content %}
|
|
|
- <div id="jobsub_history" class="view">
|
|
|
|
|
- <h1>Recently Launched Jobs</h1>
|
|
|
|
|
- <table data-filters="HtmlTable" class="sortable">
|
|
|
|
|
- <thead>
|
|
|
|
|
- <tr>
|
|
|
|
|
- <th>Owner</th>
|
|
|
|
|
- <th>Name</th>
|
|
|
|
|
- <th>Submitted</th>
|
|
|
|
|
- <th colspan=2>Last known state</th>
|
|
|
|
|
- </tr>
|
|
|
|
|
- </thead>
|
|
|
|
|
- <tbody>
|
|
|
|
|
- {% for submission in submissions %}
|
|
|
|
|
- <tr>
|
|
|
|
|
- <td>{{ submission.owner }}</td>
|
|
|
|
|
- <td>{{ submission.name }}</td>
|
|
|
|
|
- <td>
|
|
|
|
|
- <span class="jobsub_actual_date" style="display: none">{{ submission.submission_date|date:"U" }}</span>
|
|
|
|
|
- {{ submission.submission_date|timesince }} ago
|
|
|
|
|
- </td>
|
|
|
|
|
- <td>{{ submission.last_seen_state_as_string }}</td>
|
|
|
|
|
- <td><a href="{{ submission.watch_url }}" class="jobsub_watch">watch progress</a></td>
|
|
|
|
|
- </tr>
|
|
|
|
|
- {% endfor %}
|
|
|
|
|
- </tbody>
|
|
|
|
|
- </table>
|
|
|
|
|
- {% if more %}
|
|
|
|
|
- <a href="/jobsub/watch/?offset={{ offset }}&limit={{ limit|add:"20" }}" class="jobsub_more">See more</a>
|
|
|
|
|
- {% endif %}
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div id="jobsub_history" class="view">
|
|
|
|
|
+ <h1>Recently Launched Jobs</h1>
|
|
|
|
|
+ <table data-filters="HtmlTable" class="sortable">
|
|
|
|
|
+ <thead>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <th>Owner</th>
|
|
|
|
|
+ <th>Name</th>
|
|
|
|
|
+ <th>Submitted</th>
|
|
|
|
|
+ <th colspan=2>Last known state</th>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ </thead>
|
|
|
|
|
+ <tbody>
|
|
|
|
|
+ {% for submission in submissions %}
|
|
|
|
|
+ <tr>
|
|
|
|
|
+ <td>{{ submission.owner }}</td>
|
|
|
|
|
+ <td>{{ submission.name }}</td>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <span class="jobsub_actual_date" style="display: none">{{ submission.submission_date|date:"U" }}</span>
|
|
|
|
|
+ {{ submission.submission_date|timesince }} ago
|
|
|
|
|
+ </td>
|
|
|
|
|
+ <td>{{ submission.last_seen_state_as_string }}</td>
|
|
|
|
|
+ <td><a href="{{ submission.watch_url }}" class="jobsub_watch">watch progress</a></td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ {% endfor %}
|
|
|
|
|
+ </tbody>
|
|
|
|
|
+ </table>
|
|
|
|
|
+ {% if more %}
|
|
|
|
|
+ <a href="/jobsub/watch/?offset={{ offset }}&limit={{ limit|add:"20" }}" class="jobsub_more">See more</a>
|
|
|
|
|
+ {% endif %}
|
|
|
|
|
+ </div>
|
|
|
{% endblock %}
|
|
{% endblock %}
|