Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 2ae9dfb6

Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt

  • ID 2ae9dfb6692fffdcf15f896fb014b525fcf760eb
  • Vorgänger e92b111d
  • Nachfolger e2f3e23d

Focus in Admin-Masken setzen; DB-Super-User aus Auth-DB-Konfiguration vorbelegen

Unterschiede anzeigen:

SL/Controller/Admin.pm
$::form->{dbpasswd} ||= $::auth->{DB_config}->{password};
$::form->{dbdefault} ||= 'template1';
$::request->layout->focus('#dbhost');
$self->render('admin/dbadmin', title => t8('Database Administration'));
}
......
sub login_form {
my ($self, %params) = @_;
$::request->layout->focus('#admin_password');
$self->render('admin/adminlogin', title => t8('kivitendo v#1 administration', $::form->read_version), %params);
}
templates/webpages/admin/adminlogin.html
<table>
<tr>
<th align="right">[% 'Password' | $T8 %]</th>
<td>[%- L.input_tag("{AUTH}admin_password", '', type="password", class="login", id="admin_password", size="30") %]</td>
<td>[%- L.input_tag("{AUTH}admin_password", '', type="password", class="login", id="admin_password", size="30", class="initial_focus") %]</td>
</tr>
</table>
templates/webpages/admin/check_auth_database.html
[% 'Please enter the name of the database that will be used as the template for the new database:' | $T8 %]
</p>
<p>[% 'Template database' | $T8 %]: <input name="db_template" value="template1"></p>
<p>[% 'Template database' | $T8 %]: [% L.input_tag('db_template', "template1") %]</p>
<p>
[% 'If the database user listed above does not have the right to create a database then enter the name and password of the superuser below:' | $T8 %]
......
<table border="0">
<tr>
<td>[% 'Superuser name' | $T8 %]:</td>
<td>[% L.input_tag('db_superuser', '') %]</td>
<td>[% L.input_tag('db_superuser', AUTH.DB_config.user, class="initial_focus") %]</td>
</tr>
<tr>
<td>[% 'Password' | $T8 %]:</td>
<td>[% L.input_tag('db_superuser_password', '', type='password') %]</td>
<td>[% L.input_tag('db_superuser_password', AUTH.DB_config.password, type='password') %]</td>
</tr>
</table>
templates/webpages/admin/create_dataset.html
<tr>
<th align="right" nowrap>[% LxERP.t8('Create Dataset') %]</th>
<td>[% L.input_tag('db', FORM.db) %]</td>
<td>[% L.input_tag('db', FORM.db, class="initial_focus") %]</td>
</tr>
<tr>
templates/webpages/admin/dbadmin.html
<table>
<tr>
<th align="right">[% LxERP.t8('Host') %]</th>
<td>[% L.input_tag('dbhost', FORM.dbhost, size=30) %]</td>
<td>[% L.input_tag('dbhost', FORM.dbhost, size=30, class="initial_focus") %]</td>
<th align="right">[% LxERP.t8('Port') %]</th>
<td>[% L.input_tag('dbport', FORM.dbport, size=6) %]</td>
</tr>
templates/webpages/admin/delete_dataset.html
<form method="post" action="controller.pl">
<p>
[% LxERP.t8('Please select the dataset you want to delete:') %]
[% L.select_tag('db', SELF.all_unused_dbsources) %]
[% L.select_tag('db', SELF.all_unused_dbsources, class="initial_focus") %]
</p>
[% L.hidden_tag("dbhost", FORM.dbhost) %]
templates/webpages/admin/edit_client.html
<tr>
<th align="right">[% LxERP.t8('Client name') %]</th>
<td>[% L.input_tag("client.name", SELF.client.name) %]</td>
<td>[% L.input_tag("client.name", SELF.client.name, class="initial_focus") %]</td>
</tr>
<tr>
......
<tr>
<th align="right">[% LxERP.t8('Database name') %]</th>
<td>[% L.input_tag("client.dbname", SELF.client.dbname, 'data-dbsettings'=1) %]</td>
<td>[% L.input_tag("client.dbname", SELF.client.dbname, class="contains_dbsettings") %]</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('Database host and port') %]</th>
<td>
[% L.input_tag("client.dbhost", SELF.client.dbhost, 'data-dbsettings'=1) %]
[% L.input_tag("client.dbport", SELF.client.dbport, 'data-dbsettings'=1, size=6) %]
[% L.input_tag("client.dbhost", SELF.client.dbhost, class="contains_dbsettings") %]
[% L.input_tag("client.dbport", SELF.client.dbport, class="contains_dbsettings", size=6) %]
</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('Database user and password') %]</th>
<td>
[% L.input_tag("client.dbuser", SELF.client.dbuser, 'data-dbsettings'=1) %]
[% L.input_tag("client.dbpasswd", SELF.client.dbpasswd, 'data-dbsettings'=1) %]
[% L.input_tag("client.dbuser", SELF.client.dbuser, class="contains_dbsettings") %]
[% L.input_tag("client.dbpasswd", SELF.client.dbpasswd, class="contains_dbsettings") %]
</td>
</tr>
</table>
......
function test_database_connectivity() {
open_jqm_window({
url: 'controller.pl?action=Admin/test_database_connectivity',
data: $("INPUT[data-dbsettings=1]").serialize(),
data: $(".contains_dbsettings]").serialize(),
type: 'POST',
id: 'test_db_connection_window'
});
templates/webpages/admin/edit_group.html
<table>
<tr>
<th align="right">[% LxERP.t8('Name') %]</th>
<td>[% L.input_tag("group.name", SELF.group.name) %]</td>
<td>[% L.input_tag("group.name", SELF.group.name, class="initial_focus") %]</td>
</tr>
<tr>
......
[% SET section_number = loop.count %]
[% SET num_checked = 0 %]
[% FOREACH right = section.rights %][% SET name = right.name %][% IF granted_rights.$name %][% SET num_checked = num_checked + 1 %][% END %][% END %]
<h3>[% L.checkbox_tag('dummy' _ section_number, label=LxERP.t8('Section "#1"', section.description), checkall='[data-checkallgroup=' _ section_number _ ']', checked=(num_checked == section.rights.size)) %]</h3>
<h3>[% L.checkbox_tag('dummy' _ section_number, label=LxERP.t8('Section "#1"', section.description), checkall='[.checkallgroup' _ section_number _ ']', checked=(num_checked == section.rights.size)) %]</h3>
<div class="clearfix">
[% FOREACH right = section.rights %]
[% SET name = right.name %]
[% L.checkbox_tag("group.rights_map." _ name, label=right.description, checked=granted_rights.$name, 'data-checkallgroup'=section_number) %]
[% L.checkbox_tag("group.rights_map." _ name, label=right.description, checked=granted_rights.$name, class="checkallgroup" _ section_number) %]
<br>
[%- END %]
</div>
templates/webpages/admin/edit_printer.html
<table>
<tr>
<th align="right">[% LxERP.t8('Printer Description') %]</th>
<td>[% L.input_tag("printer.printer_description", SELF.printer.printer_description, size=30) %]</td>
<td>[% L.input_tag("printer.printer_description", SELF.printer.printer_description, size=30, class="initial_focus") %]</td>
<tr>
<tr>
<th align="right">[% LxERP.t8('Printer Command') %]</th>
templates/webpages/admin/edit_user.html
<table>
<tr>
<th align="right">[% LxERP.t8('Login Name') %]</th>
<td>[% L.input_tag("user.login", SELF.user.login) %]</td>
<td>[% L.input_tag("user.login", SELF.user.login, class="initial_focus") %]</td>
</tr>
[%- IF AUTH.can_change_password %]

Auch abrufbar als: Unified diff