Page MenuHomec4science

weblinkback_index.html
No OneTemporary

File Metadata

Created
Mon, Nov 4, 15:35

weblinkback_index.html

{#
## This file is part of Invenio.
## Copyright (C) 2012 CERN.
##
## Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## Invenio is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
#}
{%- if not request.is_xhr -%}
{% extends "record.html" %}
{%- endif -%}
{% block record_content %}
<div class="page-header">
{{ format_record(recid, 'hs', ln=g.ln)|safe }}
</div>
<div class="page-header">
<h4>
{{ _("Traceback URL") }}
<small>
{{ url_for('weblinkback.sendtraceback', _external=True, recid=recid) }}
</small>
</h4>
</div>
{%- if linkbacks -%}
<div class="row">
<div class="span5">
<table class="table table-striped table-condensed">
<thead>
<tr>
<th>{{ _('URL') }}</th>
<th>{{ _('Date submitted') }}</th>
<th>{{ _('Type') }}</th>
</tr>
</thead>
<tbody>
{%- for l in linkbacks -%}
<tr>
<td>
<a href="{{ l.origin_url }}">{{ l.title }}</a>
</td>
<td>
{{ l.insert_time|invenio_format_date }}
</td>
<td>
<span class="label">{{ l.type }}</span>
</td>
</tr>
{%- endfor -%}
</tbody>
</table>
</div>
</div>
{%- endif -%}
{% endblock %}

Event Timeline