110 lines
4.5 KiB
HTML
110 lines
4.5 KiB
HTML
{% extends "view_page_detail.html" %}
|
|
{% load my_tags %}
|
|
|
|
{% block content %}
|
|
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
$('#tabs').tabs({
|
|
'select': function(event, ui){
|
|
document.location.hash = ui.panel.id;
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<div class="content" id="IndividualDetail">
|
|
|
|
{% include "detail_breadcrumb.html" %}
|
|
|
|
<h3>{{source.title|escape}}</h3>
|
|
<div id="summaryarea">
|
|
<table class="infolist" style="width:90%;"> {% comment %} 2 cols {% endcomment %}
|
|
<tbody>
|
|
{% if sourceform.errors %}
|
|
<hr>
|
|
<p id="error">The following fields have errors. Please correct and try again.</p>
|
|
<div id="error">{{sourceform.errors}}</div>
|
|
<hr>
|
|
{% endif %}
|
|
<form method="post">{% csrf_token %}
|
|
<tr>
|
|
<td class="ColumnAttribute">{{sourceform.title.label}}:</td>
|
|
<td class="ColumnValue" id="data">{% render sourceform.title user action %}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="ColumnAttribute">{{sourceform.gramps_id.label}}:</td>
|
|
<td class="ColumnValue" id="data">{% render sourceform.gramps_id user action %}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="ColumnAttribute">{{sourceform.abbrev.label}}:</td>
|
|
<td class="ColumnValue" id="data">{% render sourceform.abbrev user action %}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="ColumnAttribute">{{sourceform.pubinfo.label}}:</td>
|
|
<td class="ColumnValue" id="data">{% render sourceform.pubinfo user action %}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{% if user.is_superuser %}
|
|
{% if action == "edit" %}
|
|
{% make_button "Cancel" "/source/%s" source.handle args %}
|
|
<input type="hidden" name="action" value="save"/>
|
|
<input type="hidden" name="search" value="{{search}}"/>
|
|
<input type="hidden" name="page" value="{{page}}"/>
|
|
<input type="submit" value="Save"/>
|
|
{% else %}
|
|
{% ifequal action "add" %}
|
|
{% make_button "Cancel" "/source/" args %}
|
|
<input type="hidden" name="action" value="create"/>
|
|
<input type="hidden" name="search" value="{{search}}"/>
|
|
<input type="hidden" name="page" value="{{page}}"/>
|
|
<input type="submit" value="Create"/>
|
|
{% else %}
|
|
<div style="background-color: lightgray; padding: 2px 0px 0px 2px; clear: both;">
|
|
{% make_button "+Add Source" "/source/add" args %}
|
|
{% make_button "?Edit Source" "/source/%s/edit" source.handle args %}
|
|
{% make_button "-Delete Source" "/source/%s/delete" source.handle args %}
|
|
</div>
|
|
{% endifequal %}
|
|
{% endif %}
|
|
{% else %}
|
|
{% endif %}
|
|
|
|
<!-- Tabs -->
|
|
|
|
<div class="ui-tabs ui-widget ui-widget-content ui-corner-all" id="tabs" style="border: none;">
|
|
<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
|
|
<li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active"><a class="tab-notes" href="#tab-notes">Note</a></li>
|
|
<li class="ui-corner-top ui-state-default"><a class="tab-media" href="#tab-media">Media</a></li>
|
|
<li class="ui-corner-top ui-state-default"><a class="tab-data" href="#tab-data">Data</a></li>
|
|
<li class="ui-corner-top ui-state-default"><a class="tab-repositories" href="#tab-repositories">Repository</a></li>
|
|
<li class="ui-corner-top ui-state-default"><a class="tab-references" href="#tab-references">Reference</a></li>
|
|
<li class="ui-corner-top ui-state-default"><a class="tab-history" href="#tab-history">History</a></li>
|
|
</ul>
|
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom" id="tab-notes" style="background-color: #f4f0ec;">
|
|
{% note_table source user action "/note/$act/source/%s" source.handle %}
|
|
</div>
|
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide" id="tab-media" style="background-color: #f4f0ec;">
|
|
{% media_table source user action "/media/$act/source/%s" source.handle %}
|
|
</div>
|
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide" id="tab-data" style="background-color: #f4f0ec;">
|
|
{% data_table source user action "/data/add/source/%s" source.handle %}
|
|
</div>
|
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide" id="tab-repositories" style="background-color: #f4f0ec;">
|
|
{% repository_table source user action "/repository/$act/source/%s" source.handle %}
|
|
</div>
|
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide" id="tab-references" style="background-color: #f4f0ec;">
|
|
{% source_reference_table source user action %}
|
|
</div>
|
|
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide" id="tab-history" style="background-color: #f4f0ec;">
|
|
{% history_table source user action %}
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
{% endblock %}
|