Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Nicholas J Anderson
whats-open
Commits
1565f6db
Commit
1565f6db
authored
Jan 30, 2013
by
Daniel Bond
Browse files
Added what will be the location-based file
parent
1f12edb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
whats_open/templates/location_grid.html
0 → 100644
View file @
1565f6db
{% extends 'base.html' %}
<!-- Grid with restaurants sorted by location -->
<!-- New revisions pending major revisions by Tyler -->
{% block content %}
<!-- Generated: {% now "jS F Y H:i" %} -->
<div
id=
"grid"
>
{% for list in restRows %}
<div
class =
"row"
>
{% for restaurant in list %}
<div
class =
"span3 {% if restaurant.isOpen %}open{% else %}closed{% endif %}"
>
{{ restaurant.name }}
</div>
{% endfor %}
</div>
{% empty %}
There aren't any restaurants.
{% endfor %}
</div>
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment