Merge pull request #21608 from owncloud/better-setting-templates
improve personal page template
This commit is contained in:
commit
16097037af
|
@ -4,8 +4,8 @@
|
||||||
* See the COPYING-README file.
|
* See the COPYING-README file.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** @var $_ array */
|
/** @var $_ mixed[]|\OCP\IURLGenerator[] */
|
||||||
/** @var $_['urlGenerator'] */
|
/** @var \OC_Defaults $theme */
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div id="app-navigation">
|
<div id="app-navigation">
|
||||||
|
@ -22,8 +22,6 @@
|
||||||
|
|
||||||
<div id="app-content">
|
<div id="app-content">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="quota" class="section">
|
<div id="quota" class="section">
|
||||||
<div style="width:<?php p($_['usage_relative']);?>%"
|
<div style="width:<?php p($_['usage_relative']);?>%"
|
||||||
<?php if($_['usage_relative'] > 80): ?> class="quota-warning" <?php endif; ?>>
|
<?php if($_['usage_relative'] > 80): ?> class="quota-warning" <?php endif; ?>>
|
||||||
|
@ -34,8 +32,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<?php if ($_['enableAvatars']): ?>
|
<?php if ($_['enableAvatars']): ?>
|
||||||
<form id="avatar" class="section" method="post" action="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.avatar.postAvatar')); ?>">
|
<form id="avatar" class="section" method="post" action="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.avatar.postAvatar')); ?>">
|
||||||
<h2><?php p($l->t('Profile picture')); ?></h2>
|
<h2><?php p($l->t('Profile picture')); ?></h2>
|
||||||
|
@ -60,8 +56,6 @@
|
||||||
</form>
|
</form>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
if($_['displayNameChangeSupported']) {
|
if($_['displayNameChangeSupported']) {
|
||||||
?>
|
?>
|
||||||
|
@ -86,8 +80,6 @@ if($_['displayNameChangeSupported']) {
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
if($_['passwordChangeSupported']) {
|
if($_['passwordChangeSupported']) {
|
||||||
?>
|
?>
|
||||||
|
@ -112,8 +104,6 @@ if($_['passwordChangeSupported']) {
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="groups" class="section">
|
<div id="groups" class="section">
|
||||||
<h2><?php p($l->t('Groups')); ?></h2>
|
<h2><?php p($l->t('Groups')); ?></h2>
|
||||||
<p><?php p($l->t('You are member of the following groups:')); ?></p>
|
<p><?php p($l->t('You are member of the following groups:')); ?></p>
|
||||||
|
@ -122,8 +112,6 @@ if($_['passwordChangeSupported']) {
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
if($_['passwordChangeSupported']) {
|
if($_['passwordChangeSupported']) {
|
||||||
script('jquery-showpassword');
|
script('jquery-showpassword');
|
||||||
|
@ -151,8 +139,6 @@ if($_['passwordChangeSupported']) {
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<form class="section">
|
<form class="section">
|
||||||
<h2>
|
<h2>
|
||||||
<label for="languageinput"><?php p($l->t('Language'));?></label>
|
<label for="languageinput"><?php p($l->t('Language'));?></label>
|
||||||
|
@ -181,8 +167,6 @@ if($_['passwordChangeSupported']) {
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="clientsbox" class="section clientsbox">
|
<div id="clientsbox" class="section clientsbox">
|
||||||
<h2><?php p($l->t('Get the apps to sync your files'));?></h2>
|
<h2><?php p($l->t('Get the apps to sync your files'));?></h2>
|
||||||
<a href="<?php p($_['clients']['desktop']); ?>" target="_blank">
|
<a href="<?php p($_['clients']['desktop']); ?>" target="_blank">
|
||||||
|
@ -214,8 +198,6 @@ if($_['passwordChangeSupported']) {
|
||||||
<?php }?>
|
<?php }?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<?php foreach($_['forms'] as $form) {
|
<?php foreach($_['forms'] as $form) {
|
||||||
if (isset($form['form'])) {?>
|
if (isset($form['form'])) {?>
|
||||||
<div id="<?php isset($form['anchor']) ? p($form['anchor']) : p('');?>"><?php print_unescaped($form['form']);?></div>
|
<div id="<?php isset($form['anchor']) ? p($form['anchor']) : p('');?>"><?php print_unescaped($form['form']);?></div>
|
||||||
|
@ -227,10 +209,12 @@ if($_['passwordChangeSupported']) {
|
||||||
<h2><?php p($l->t('SSL root certificates')); ?></h2>
|
<h2><?php p($l->t('SSL root certificates')); ?></h2>
|
||||||
<table id="sslCertificate" class="grid">
|
<table id="sslCertificate" class="grid">
|
||||||
<thead>
|
<thead>
|
||||||
|
<tr>
|
||||||
<th><?php p($l->t('Common Name')); ?></th>
|
<th><?php p($l->t('Common Name')); ?></th>
|
||||||
<th><?php p($l->t('Valid until')); ?></th>
|
<th><?php p($l->t('Valid until')); ?></th>
|
||||||
<th><?php p($l->t('Issued By')); ?></th>
|
<th><?php p($l->t('Issued By')); ?></th>
|
||||||
<th/>
|
<th></th>
|
||||||
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php foreach ($_['certs'] as $rootCert): /**@var \OCP\ICertificate $rootCert*/ ?>
|
<?php foreach ($_['certs'] as $rootCert): /**@var \OCP\ICertificate $rootCert*/ ?>
|
||||||
|
@ -268,6 +252,4 @@ if($_['passwordChangeSupported']) {
|
||||||
<p><?php include('settings.development.notice.php'); ?></p>
|
<p><?php include('settings.development.notice.php'); ?></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue