Remove im app.
[pithos] / pithos / im / templates / invitations.html
diff --git a/pithos/im/templates/invitations.html b/pithos/im/templates/invitations.html
deleted file mode 100644 (file)
index d1eca50..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta charset="utf-8" />
-  <title>Invitations</title>
-  <link rel="stylesheet" href="/im/static/bootstrap.css">
-</head>
-<body>
-<div class="container">
-  <h3>You have {{ user.invitations }} invitation{{ user.invitations|pluralize }} left.</h3>
-
-  {% if message %}
-  <br />
-  <div class="alert-message {{ status }}">
-    <p>{{ message }}</p>
-  </div>
-  {% endif %}
-
-  {% if user.invitations %}
-  <br />
-  <h4>Invite someone else:</h4>
-  <form method="post">
-    <div class="clearfix">
-      <label for="user-realname">Name</label>
-      <div class="input">
-        <input type="text" class="span4" id="user-realname" name="realname" />
-      </div>
-    </div>
-
-    <div class="clearfix">
-      <label for="user-uniq">Email</label>
-      <div class="input">
-        <input type="text" class="span4" id="user-uniq" name="uniq" />
-      </div>
-    </div>
-
-    <div class="actions">
-      <button type="reset" class="btn">Reset</button>
-      <button type="submit" class="btn primary">Invite</button>
-    </div>
-  </form>
-  {% endif %}
-</div>
-</body>
-</html>