Skip to content

Commit

Permalink
added domains.html
Browse files Browse the repository at this point in the history
  • Loading branch information
harperreed committed Jun 29, 2010
1 parent 73918a5 commit e734849
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions dryapp/drydrop/app/views/admin/domains.html
@@ -0,0 +1,21 @@
{% extends "admin/layout.html" %}
{% block title %}Domains{% endblock %}
{% block head %}
<link type="text/css" rel="stylesheet" href="/drydrop-static/styles/highlight.css" />
{% endblock %}
{% block main %}
<div class="form-section">
<span>Domains hosted</span><span class="help-button">more info</span>
<div class="help-text">
<p>
You are able to host multiple domains with one instance of drydrop. You can do this by adding the drydrop app to your google hosted domain.
</p>
</div>
</div>
<pre class="cache-box">
{% for domain in domains %}
<a href="http://{{ domain }}/" target="_blank">{{ domain }}</a> - <a href="http://{{ domain }}/admin/" target="_blank">admin</a>
{% endfor %}

</pre>
{% endblock %}

0 comments on commit e734849

Please sign in to comment.