Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules/bibauthorid/etc/templates/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ etc_DATA = head.html \
debug_block.html \
profile_menu.html \
profile_page.html \
profile_page_template.html \
generic_wrapper.html \
citations_summary.html \
publications_box.html \
Expand Down
9 changes: 6 additions & 3 deletions modules/bibauthorid/etc/templates/manage_profile.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
{% extends "index.html" %}
{% block content %}
<div class="row">

<!-- left -->
<div class="col-md-6">
<!-- arxiv -->
{% if inspire %}
<div id="arxiv" class="well well-small inspire-well">
<div class="bai-box-title">
<span>arXiv</span>
</div>
<div class="bai-box-content">{{ arxiv }}</div>
</div>
{% endif %}

<!-- autoassign -->
{% if autoclaim_successful_recids or autoclaim_unsuccesful_recids %}
<div id="autoassign" class="well well-small inspire-well">
<div class="bai-box-title">
<span>Automatically Assigned Papers</span>
</div>
<div class="bai-box-content">{% include "autoclaim_box.html" %}</div>
<div class="bai-box-content">{% include "autoclaim_box.html" %}</div>
</div>
{% endif %}

Expand All @@ -45,14 +46,15 @@
<!-- right -->
<div class="col-md-6">
<!-- orcid -->
{% if inspire %}
<div id="orcid" class="well well-small inspire-well">
<div class="bai-box-title">
<span>ORCiD</span>
</div>
<div class="bai-box-content">{{ orcid }}</div>
</div>

<!-- hepnames -->
<!-- hepnames -->
<div id="hepdata" class="well well-small inspire-well">
<div class="bai-box-title">
<span>HepNames</span>
Expand All @@ -67,6 +69,7 @@
</div>
<div class="bai-box-content">{{ contact }}</div>
</div>
{% endif %}

</div>

Expand Down
Loading