forked from ScoDoc/ScoDoc
43 lines
1.8 KiB
HTML
43 lines
1.8 KiB
HTML
{% extends 'base.html' %}
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
{% block app_content %}
|
|
<h1>Protoype ScoDoc 8: accueil</h1>
|
|
<div class="row">
|
|
<h2>Avec login requis</h2>
|
|
<ul>
|
|
<li><a href="{{ url_for('main.test_vue') }}"><tt>test_vue</tt>, login requis</a></li>
|
|
<li><a href="{{ url_for('main.a_zope_function', y=22) }}">a_zope_function</a> : affichage objets "Zope"</li>
|
|
<li><a href="{{ url_for('main.a_zope_function', x=11, y=22) }}">a_zope_function?x=22</a> : avec parametre
|
|
<tt>x=11, y=22</tt>
|
|
</li>
|
|
</ul>
|
|
<h2>Sans login</h2>
|
|
<ul>
|
|
<li><a href="{{ url_for('main.a_zope_form_get') }}"><tt>a_zope_form_get</tt></a> : formulaire GET ala ScoDoc non
|
|
protégé renvoyant vers une page protégée</li>
|
|
<li><a href="{{ url_for('main.a_zope_form_post') }}"><tt>a_zope_form_post</tt></a> : formulaire POST ala ScoDoc
|
|
non protégé renvoyant vers une page protégée</li>
|
|
|
|
|
|
<li><a href="{{ url_for('main.formsemestre_status', dept_id='RT') }}"><tt>formsemestre_status</tt></a> : a-t-on
|
|
le rôle EnsRT ?
|
|
</li>
|
|
<li><a href="ScoDoc/RO/Scolarite/sco_exemple?etudid=E123"><tt>sco_exemple?etudid=E123</tt> : test "scodoc", url
|
|
manuelle</a></li>
|
|
<li><a href="{{ url_for('notes.sco_exemple2' , scodoc_dept='RT') }}"><tt>sco_exemple2</tt></a> : test appel
|
|
entre vues
|
|
</li>
|
|
|
|
<li><a href="{{ url_for('notes.sco_get_version' , scodoc_dept='RT') }}"><tt>sco_get_version</tt></a> : test
|
|
appel vers ScoDoc interne (arg. REQUEST positionnel).
|
|
</li>
|
|
|
|
<li><a href="{{ url_for('notes.sco_test_view' , scodoc_dept='RT') }}"><tt>sco_get_version</tt></a> : vue
|
|
protégée par perm. VIEW.
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
{% endblock %} |