esup-helpdesk




La liste d'utilisateurs n'est pas rendue car vous ne possédez pas les droits d'accès nécessaires pour afficher les profils utilisateur.

Arborescence des pages

Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

...

Solution: Import the esup-helpdesk CSS stylesheets from one of the CSS stylesheets of the portal (adapt them to your look if needed).

Bloc de code
titleportal.css

@import "/esup-helpdesk/media/commons.css";
@import "/esup-helpdesk/media/helpdesk.css";
@import "/esup-helpdesk/media/portlet.css";




I am an administrator but I can not edit the categories

...

ERROR: function timediff(timestamp with time zone, timestamp without time zone) does not exist

The function timediff is native in MySql but must be added by hand by PostGres users, as well as the function time_to_sec:

Bloc de code

CREATE FUNCTION timediff(t1 timestamptz, t2 "timestamp")
RETURNS "interval" AS
'select ($2-$1)::interval'

CREATE OR REPLACE FUNCTION time_to_sec(i1 "interval")
RETURNS float8 AS
'SELECT EXTRACT(EPOCH FROM $1) AS result;'