Changeset 10879
- Timestamp:
- 09/22/11 09:43:23 (20 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/trunk/tools/cornetApps/templates/HtmlPages/main_page.html
r10865 r10879 5 5 {% endblock %} 6 6 {% block content %} 7 <img id="bg" src="{{STATIC_URL}}pics/ictasbackground.jpg" alt="background image"/>7 <img id="bg" src="{{STATIC_URL}}pics/ictasbackground.jpg" alt="background image"/> 8 8 {% if user.username %} 9 9 <p>Welcome {{user.username}}!</p> 10 <a href="some link">a link</a> 10 11 <!--<p> View <a href="/floor1/">Floor 1</a></p>--> 11 <p> View <a href=" {{URL_ROOT}}ossie/">OSSIE</a></p>12 <p> View <a href="ossie/">OSSIE</a></p> 12 13 <ul> 13 14 {{user.username}}'s waveforms: … … 20 21 {% endif %} 21 22 </ul> 22 <a href=" {{URL_ROOT}}logout/">Logout here</a>23 <a href="logout/">Logout here</a> 23 24 {% else %} 24 25 <p> Welcome anonymous user!</p> 25 <p><a href=" {{URL_ROOT}}login/">Login</a> if you have not done so already.</p>26 <p>If you do not have an account, please <a href=" {{URL_ROOT}}register/">register here</a>.</p>26 <p><a href="login/">Login</a> if you have not done so already.</p> 27 <p>If you do not have an account, please <a href="register/">register here</a>.</p> 27 28 {% endif %} 28 29 {% endblock %}