diff --git a/app/scodoc/sco_bulletins.py b/app/scodoc/sco_bulletins.py index f7ba8648c..bb7c9f851 100644 --- a/app/scodoc/sco_bulletins.py +++ b/app/scodoc/sco_bulletins.py @@ -1031,9 +1031,7 @@ def _formsemestre_bulletinetud_header_html( uid = str(authuser) H = [ html_sco_header.sco_header( - context, page_title="Bulletin de %(nomprenom)s" % etud, - REQUEST=REQUEST, javascripts=[ "js/bulletin.js", "libjs/d3.v3.min.js", diff --git a/app/scodoc/sco_find_etud.py b/app/scodoc/sco_find_etud.py index dda5a5877..ddfa6b82d 100644 --- a/app/scodoc/sco_find_etud.py +++ b/app/scodoc/sco_find_etud.py @@ -124,12 +124,10 @@ def search_etud_in_dept(context, expnom="", REQUEST=None): H = [ html_sco_header.sco_header( - context, page_title="Recherche d'un étudiant", no_side_bar=True, init_qtip=True, javascripts=["js/etud_info.js"], - REQUEST=REQUEST, ), """
Saisie des absences %s %s,
@@ -1000,11 +994,7 @@ def EtatAbsencesDate(
groups_infos = sco_groups_view.DisplayedGroupsInfos(
context, group_ids, REQUEST=REQUEST
)
- H = [
- html_sco_header.sco_header(
- context, page_title="Etat des absences", REQUEST=REQUEST
- )
- ]
+ H = [html_sco_header.sco_header(page_title="Etat des absences")]
if date:
dateiso = ndb.DateDMYtoISO(date)
nbetud = 0
diff --git a/app/views/notes.py b/app/views/notes.py
index 4d952f80e..751baa8dd 100644
--- a/app/views/notes.py
+++ b/app/views/notes.py
@@ -462,9 +462,7 @@ def formation_import_xml(context, file, REQUEST):
def formation_import_xml_form(context, REQUEST):
"form import d'une formation en XML"
H = [
- html_sco_header.sco_header(
- context, page_title="Import d'une formation", REQUEST=REQUEST
- ),
+ html_sco_header.sco_header(page_title="Import d'une formation"),
""" |