307:6ce60c358c5c
Anton Shestakov <av6@dwimlabs.net>, 2017-10-03
candolint: don't forget to check candolint.js too

previous change 241:f5efb98791b5

templates/ui/checks.html

Permissions: -rw-r--r--

Other formats: Feeds:
239
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
<tbody>
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
{% for check in checks %}
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
{% set project = check.project %}
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
{% set change = check.change %}
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
{% set adapter = project.get_adapter() %}
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
<tr>
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
<td class="uk-text-right">{% module Badges(check) %}</td>
241
241:f5efb98791b5 viewer: display full project link, but shade domain and user part
Anton Shestakov <av6@dwimlabs.net>
previous changes: 239:d63d57df465c
line | diff
<td class="uk-width-1-1 uk-text-break">{% module Template('ui/project-link.html', project=project) %}</td>
239
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
<td><a href="{{ project.get_url() }}/{{ check.ordinal }}">check #{{ check.ordinal }}</a></td>
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
<td><a href="{{ adapter.get_branch_url(change) }}">{{ change.branch }}</a></td>
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
<td><a href="{{ adapter.get_commit_url(change) }}">{% if change.rev is not None %}{{ change.rev }}:{% end %}{{ change.node[:12] }}</a></td>
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
<td>{% module Time(check.finished) %}</td>
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
<td>{{ check.get_duration() }}</td>
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
</tr>
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
{% end %}
239:d63d57df465c templates: move table rows with project checks to a separate template
Anton Shestakov <av6@dwimlabs.net>
previous changes:
line | diff
</tbody>