Changes between Version 33 and Version 34 of Software/Jupyter


Ignore:
Timestamp:
10/15/17 21:57:09 (7 years ago)
Author:
Jens Henrik Goebbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Software/Jupyter

    v33 v34  
    103103  * start-server button
    104104    * clicking the start-server button opens the webpage "!http://<jupyterhub-ip>/hub/spawn", which is generated by Jinja2 from the template [https://github.com/jupyterhub/jupyterhub/blob/master/share/jupyter/hub/templates/spawn.html spawn.html]
     105      * this page includes a <form> element, which includes the generated part "spawner_options_form":
     106{{{   
     107 <form enctype="multipart/form-data" id="spawn_form" action="{{url}}" method="post" role="form">
     108      {{spawner_options_form | safe}}
     109      <br>
     110      <input type="submit" value="Spawn" class="btn btn-jupyter">
     111</form>
     112}}}
     113      * "spawner_options_form" is defined in [https://github.com/jupyterhub/jupyterhub/blob/master/jupyterhub/spawner.py#L230 spawner.py] in function options_form()
    105114
    106115===== Modifications