root/ossiedev/trunk/tools/cornetApps/templates/HtmlPages/main_page.html @ 10789

Revision 10789, 0.7 KB (checked in by edent, 22 months ago)

modified settings

  • Property svn:executable set to *
Line 
1{% extends "base.html" %}
2{% block title %}CORNET Welcome Page{% endblock %}
3{% block content %}
4        {% if user.username %}
5                <p>Welcome {{user.username}}!</p>
6                <!--<p> View <a href="/floor1/">Floor 1</a></p>-->
7                <p> View <a href="/ossie/">OSSIE</a></p>
8                <ul>
9                        {{user.username}}'s waveforms:
10                        {% if availableList %}
11                                {% for wave in availableList %}
12                                        <li>{{ wave.getName }}</li>
13                                {% endfor %}
14                        {% else %}
15                        <p>No waveforms are available.</p>
16                        {% endif %}
17                </ul>
18                <a href="/logout/">Logout here</a>
19        {% else %}
20                <p> Welcome anonymous user!</p>
21                <a href="/login/">Login</a> if you have not done so already.
22        {% endif %}
23{% endblock %}
24
25
26
Note: See TracBrowser for help on using the browser.