Work on event stuff
This commit is contained in:
@@ -164,7 +164,7 @@ def load_event_presentation_obj(
|
||||
WHERE `event_presenter`.event_presentation_id = :event_presentation_id
|
||||
{sql_hidden}
|
||||
{sql_enabled}
|
||||
ORDER BY `event_presenter`.created_on DESC, `event_presenter`.updated_on DESC;
|
||||
ORDER BY `event_presenter`.priority DESC, `event_presenter`.sort ASC, `event_presenter`.family_name ASC, `event_presenter`.given_name ASC, `event_presenter`.display_name ASC, `event_presenter`.full_name ASC, `event_presenter`.created_on DESC, `event_presenter`.updated_on DESC;
|
||||
"""
|
||||
|
||||
log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL
|
||||
@@ -293,7 +293,7 @@ def get_event_presentation_rec_list(
|
||||
{sql_where_event_session_id}
|
||||
{sql_hidden}
|
||||
{sql_enabled}
|
||||
ORDER BY `event_presentation`.start_datetime ASC, `event_presentation`.sort ASC, `event_presentation`.name ASC, `event_presentation`.created_on DESC, `event_presentation`.updated_on DESC
|
||||
ORDER BY `event_presentation`.priority DESC, `event_presentation`.sort ASC, `event_presentation`.start_datetime ASC, `event_presentation`.sort ASC, `event_presentation`.name ASC, `event_presentation`.created_on DESC, `event_presentation`.updated_on DESC
|
||||
{sql_limit};
|
||||
"""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user