|
Revision 11091, 0.9 KB
(checked in by edent, 14 months ago)
|
|
working from webserver
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | {% extends "base.html" %}
|
|---|
| 2 | {% block title %}CORNET Welcome Page{% endblock %}
|
|---|
| 3 | {% block header %}
|
|---|
| 4 | <link href="{{STATIC_URL}}front_page.css" rel="stylesheet" type="text/css"/>
|
|---|
| 5 | {% endblock %}
|
|---|
| 6 | {% block content %}
|
|---|
| 7 | <img id="bg" src="{{STATIC_URL}}pics/ictasbackground.jpg" alt="background image"/>
|
|---|
| 8 | {% if user.username %}
|
|---|
| 9 | <p>Welcome {{user.username}}!</p>
|
|---|
| 10 | <p> View <a href="{{MEDIA_URL}}/ossie/">OSSIE</a></p>
|
|---|
| 11 | <ul>
|
|---|
| 12 | {{user.username}}'s waveforms:
|
|---|
| 13 | {% if availableList %}
|
|---|
| 14 | {% for wave in availableList %}
|
|---|
| 15 | <li>{{ wave.getName }}</li>
|
|---|
| 16 | {% endfor %}
|
|---|
| 17 | {% else %}
|
|---|
| 18 | <p>No waveforms are available.</p>
|
|---|
| 19 | {% endif %}
|
|---|
| 20 | </ul>
|
|---|
| 21 | <a href="logout/">Logout here</a>
|
|---|
| 22 | {% else %}
|
|---|
| 23 | <p><a href="login/">Login</a> if you have not done so already.</p>
|
|---|
| 24 | <p>If you do not have an account, please <a href="register/">register here</a>.</p>
|
|---|
| 25 | {% endif %}
|
|---|
| 26 | {% endblock %}
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|