~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wlscheduling/main.html

  • Committer: Holger Rapp
  • Date: 2009-02-21 18:24:02 UTC
  • Revision ID: sirver@kallisto.local-20090221182402-k3tuf5c4gjwslbjf
Main Page contains now the same informations as before

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
{% extends "wlscheduling/base.html" %}
3
 
{% comment %}
4
 
   vim:ft=htmldjango
5
 
{% endcomment %}
6
 
 
7
 
{% block content_header %}
8
 
<h1>Welcome to the scheduling module!</h1>
9
 
{% endblock %}
10
 
 
11
 
{% block content_main %}
12
 
<div class="blogEntry">
13
 
    <div id="main-choices" class="main-choices">
14
 
        <a href="{% url 'scheduling_scheduling' %}" >
15
 
            <button title="You know when you will be available to play and want to display when you're available and find other players that will be available at these hours">Define your playtime and find a game</button>
16
 
        </a>
17
 
        <a href="{% url 'scheduling_find' %}" >
18
 
            <button title="You just want to know when everybody is going to be playing" >Show other users playtime</button>
19
 
        </a>
20
 
    </div>
21
 
</div>
22
 
 
23
 
{% endblock %}