Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103687233
webmessage_add.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Mar 4, 00:42
Size
3 KB
Mime Type
text/html
Expires
Thu, Mar 6, 00:42 (2 d)
Engine
blob
Format
Raw Data
Handle
24640026
Attached To
R3600 invenio-infoscience
webmessage_add.html
View Options
{#
## 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.
#}
{% from "_formhelpers.html" import render_field with context %}
{% extends "page.html" %}
{% set title = _("Write a message") %}
{% block header %}
{{ super() }}
{% css "img/jquery-ui/themes/redmond/jquery-ui.css" %}
{% js "js/jquery-ui.min.js" %}
{% js "js/jquery-ui-timepicker-addon.js" %}
{% endblock header %}
{% block javascript %}
<script type="text/javascript">
$(document).ready(function(){
function split( val ) {
return val.split(/,\s*/);
}
function extractLast( term ) {
return split(term).pop();
}
var selectLast = function( event, ui ) {
var terms = split(this.value);
terms.pop();
terms.push(ui.item.value);
terms.push("");
this.value = terms.join(", ");
return false;
}
$("#sent_to_user_nicks").autocomplete({
minLength: 3,
source: function(request, response) {
$.ajax({
url: "{{ url_for('webgroup.search')|safe }}",
data: {
query: "users",
term: extractLast(request.term)
},
focus: function() {
return false;
},
success: function(data, textStatus, jqXHR){
response(data["nicknames"]);
}
})},
select: selectLast });
$("#sent_to_group_names").autocomplete({
minLength: 3,
source: function(request, response) {
$.ajax({
url: "{{ url_for('webgroup.search')|safe }}",
data: {
query: "groups",
term: extractLast(request.term)
},
focus: function() {
return false;
},
success: function(data, textStatus, jqXHR){
response(data["groups"]);
}
});
},
select: selectLast
});
$('input.datepicker').datepicker({
dateFormat: 'yy-mm-dd'
});
$('input.datetimepicker').datetimepicker({
showSecond: true,
dateFormat: 'yy-mm-dd',
timeFormat: 'hh:mm:ss'
});
$('input.timepicker').timepicker({
timeFormat: 'hh:mm:ss',
showSecond: true
});
});
</script>
{% endblock javascript %}
{% block body %}
<form name="write_message" action="{{ url_for('.add') }}" method="post" class="form-horizontal">
{{ form.csrf_token }}
{{ render_field(form.sent_to_user_nicks) }}
{{ render_field(form.sent_to_group_names) }}
{{ render_field(form.subject) }}
{{ render_field(form.body) }}
{{ render_field(form.received_date) }}
<div class="form-actions">
<input type="submit" name="send_button" value="{{ _("Send") }}" class="btn btn-primary"/>
</div>
</form>
{% endblock %}
Event Timeline
Log In to Comment