Files @ 531ab818cc3d
Branch filter:

Location: kallithea/rhodecode/templates/admin/user_groups/user_group_add.html

Bradley M. Kuhn
Add javascript for Object Code excanvas (flot) version herein included and use that instead of minified version.

I had a bit of trouble finding the upstream on excanvas, as the version from
Google, which appears to be the original source, seems unmaintained.

However, it appears the version we're carrying in Kallithea is indeed from
the excanvas era of flot.

$ (cd /tmp; \
svn -r 135 checkout http://flot.googlecode.com/svn/trunk/ flot )
$ cp /tmp/flot/excanvas.js rhodecode/public/js/excanvas.js

I also verified the sha256sum of the min file matched ours:

$ sha256sum /tmp/flot/excanvas.min.js rhodecode/public/js/excanvas.min.js
5f94b032a110504b7b261eaf71392fa3e8d82cdc6455c0cba5c9f03cd34ed122 /tmp/flot/excanvas.min.js
5f94b032a110504b7b261eaf71392fa3e8d82cdc6455c0cba5c9f03cd34ed122 rhodecode/public/js/excanvas.min.js
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('Add user group')}
    %if c.rhodecode_name:
        &middot; ${c.rhodecode_name}
    %endif
</%def>
<%def name="breadcrumbs_links()">
    ${h.link_to(_('Admin'),h.url('admin_home'))}
    &raquo;
    ${h.link_to(_('User groups'),h.url('users_groups'))}
    &raquo;
    ${_('Add User Group')}
</%def>

<%def name="page_nav()">
    ${self.menu('admin')}
</%def>

<%def name="main()">
<div class="box">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
    </div>
    <!-- end box / title -->
    ${h.form(url('users_groups'))}
    <div class="form">
        <!-- fields -->
        <div class="fields">
             <div class="field">
                <div class="label">
                    <label for="users_group_name">${_('Group name')}:</label>
                </div>
                <div class="input">
                    ${h.text('users_group_name',class_='small')}
                </div>
             </div>
            <div class="field">
                <div class="label label-textarea">
                    <label for="user_group_description">${_('Description')}:</label>
                </div>
                <div class="textarea text-area editor">
                    ${h.textarea('user_group_description')}
                    <span class="help-block">${_('Short, optional description for this user group.')}</span>
                </div>
             </div>
             <div class="field">
                <div class="label label-checkbox">
                    <label for="users_group_active">${_('Active')}:</label>
                </div>
                <div class="checkboxes">
                    ${h.checkbox('users_group_active',value=True, checked='checked')}
                </div>
             </div>

            <div class="buttons">
              ${h.submit('save',_('Save'),class_="btn")}
            </div>
        </div>
    </div>
    ${h.end_form()}
</div>
</%def>

<script>
    $(document).ready(function(){
        $('#users_group_name').focus();
    })
</script>