gramps/src/data/templates/view_note_detail.html

114 lines
3.6 KiB
HTML
Raw Normal View History

{% extends "view_page_detail.html" %}
{% load my_tags %}
{% block content %}
2012-05-28 22:47:15 +05:30
<script type="text/javascript">
$(function(){
var selectedTab = 0;
$('#tabs li a').each(function(index) {
if ($(this).attr('href').replace("#", "#tab-") == document.location.hash) {
selectedTab = index;
}
});
$('#tabs').tabs({
'select': function(event, ui){
document.location.hash = "tab-" + ui.panel.id;
},
'selected' : selectedTab
});
2012-05-28 22:47:15 +05:30
$('.wysiwyg').htmlarea({
toolbar: [
2012-05-29 06:54:23 +05:30
"bold", "italic", "underline",
"|", "forecolor", "superscript", "p",
"|", "link", "unlink",
"|", "html"
2012-05-28 22:47:15 +05:30
]
});
// FIXME: add font, fontsize, backcolor
// FIXME: find easier way:
2012-05-28 22:47:15 +05:30
$('.jHtmlArea').contents().find('iframe').contents().find('body').css({"background-color": "white"});
});
function setnotetext() {
2012-05-28 23:24:22 +05:30
document.getElementById('notetext').value = $('.jHtmlArea').contents().find('iframe').contents().find('body').html();
}
2012-05-28 22:47:15 +05:30
</script>
<div class="content" id="IndividualDetail">
2011-12-13 04:51:13 +05:30
{% include "detail_breadcrumb.html" %}
<div id="summaryarea">
<table class="infolist" style="width:90%;">
<tbody>
2012-05-26 08:40:55 +05:30
{% if noteform.errors %}
<hr>
<p id="error">The following fields have errors. Please correct and try again.</p>
<div id="error">{{noteform.errors}}</div>
<hr>
{% endif %}
2012-05-28 22:47:15 +05:30
<form method="post" onsubmit="setnotetext()">{% csrf_token %}
<tr>
<td class="ColumnAttribute">{{noteform.notetext.label}}:</td>
2012-05-28 22:47:15 +05:30
<td class="ColumnValue" id="data" colspan="3">
{% if action == "edit" or action == "add" %}
<input type="hidden" id="notetext" name="notetext" value=""></input>
2012-05-28 22:47:15 +05:30
{% render noteform.notetext user action %}
{% else %}
<div style="overflow-y: scroll; height: 100px;">{{notetext|safe}}</div>
2012-05-28 22:47:15 +05:30
{% endif %}
</td>
</tr>
2012-05-26 08:40:55 +05:30
</tr>
<tr>
2012-05-26 10:02:48 +05:30
<td></td>
<td></td>
2012-05-26 08:40:55 +05:30
<td class="ColumnAttribute">{{noteform.preformatted.label}}:</td>
<td class="ColumnValue" id="data">{% render noteform.preformatted user action %}</td>
</tr>
<tr>
2012-05-26 10:02:48 +05:30
<td class="ColumnAttribute">{{noteform.gramps_id.label}}:</td>
<td class="ColumnValue" id="data"> {% render noteform.gramps_id user action %}</td>
<td class="ColumnAttribute">{{noteform.note_type.label}}:</td>
<td class="ColumnValue" id="data">{% render noteform.note_type user action %}</td>
</tr>
<tr>
2012-05-26 08:40:55 +05:30
<td class="ColumnAttribute">{{noteform.tags.label}}:</td>
<td class="ColumnValue" id="data" colspan="4">{% render noteform.tags user action %}</td>
</tr>
</table>
<!-- Tabs -->
<div class="ui-tabs ui-widget ui-widget-content ui-corner-all" id="tabs">
<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
<li class="ui-corner-top ui-state-default"><a href="#tab-references">References</a></li>
</ul>
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide" id="tab-references">
{% note_reference_table note user action %}
</div>
</div>
</div>
</div>
2012-05-26 08:40:55 +05:30
{% if user.is_superuser %}
{% if action == "edit" %}
{% make_button "Cancel" "/note/%s" note.handle %}
2012-05-26 08:40:55 +05:30
<input type="hidden" name="action" value="save"/>
<input type="submit" value="Save"/>
{% else %}
{% ifequal action "add" %}
{% make_button "Cancel" "/note/" %}
<input type="hidden" name="action" value="create"/>
<input type="submit" value="Create"/>
{% else %}
{% make_button "Add Note" "/note/add" %}
{% make_button "Edit Note" "/note/%s/edit" note.handle %}
{% make_button "Delete Note" "/note/%s/delete" note.handle %}
{% endifequal %}
{% endif %}
{% else %}
{% endif %}
</form>
{% endblock %}