* Finished task#4890
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
.table-footer .table-actions{width:auto;visibility:visible;opacity:1;white-space: nowrap;}
|
||||
.table-footer .table-actions{width:auto;visibility:visible;opacity:1;}
|
||||
.table-footer .table-actions .text{line-height:28px;}
|
||||
|
||||
@@ -246,7 +246,6 @@ class commonModel extends model
|
||||
$isGuest = $app->user->account == 'guest';
|
||||
|
||||
echo "<a class='dropdown-toggle' data-toggle='dropdown'>";
|
||||
echo "<div class='avatar avatar-sm bg-secondary avatar-circle'>" . strtoupper($app->user->account{0}) . "</div>\n";
|
||||
echo "<span class='user-name'>" . (empty($app->user->realname) ? $app->user->account : $app->user->realname) . '</span>';
|
||||
echo "<span class='caret'></span>";
|
||||
echo '</a>';
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
$config->entry->create = new stdclass();
|
||||
$config->entry->create->requiredFields = 'name, code, key';
|
||||
$config->entry->create->requiredFields = 'name, code, account, key';
|
||||
|
||||
$config->entry->edit = new stdclass();
|
||||
$config->entry->edit->requiredFields = 'name, code, key';
|
||||
$config->entry->edit->requiredFields = 'name, code, account, key';
|
||||
|
||||
$config->entry->help = 'http://www.zentao.net/book/zentaopmshelp/integration-287.html';
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<small><?php echo $lang->arrow . ' ' . $lang->entry->create;?></small>
|
||||
</h2>
|
||||
</div>
|
||||
<form class='main-form' id='entryForm' method='post' class='ajaxForm'>
|
||||
<form id='entryForm' method='post' class='ajaxForm'>
|
||||
<table class='table table-form'>
|
||||
<tr>
|
||||
<th class='w-80px'><?php echo $lang->entry->name;?></th>
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<small><?php echo $lang->arrow . ' ' . $lang->entry->edit;?></small>
|
||||
</h2>
|
||||
</div>
|
||||
<form class='main-form' id='entryForm' method='post' class='ajaxForm'>
|
||||
<form id='entryForm' method='post' class='ajaxForm'>
|
||||
<table class='table table-form'>
|
||||
<tr>
|
||||
<th class='w-80px'><?php echo $lang->entry->name;?></th>
|
||||
|
||||
Reference in New Issue
Block a user