Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add about page, generated with a python script and a html template #79

Open
wants to merge 1 commit into
base: v1.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions app/controllers/about_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AboutController < ApplicationController

def index
end
end
44 changes: 44 additions & 0 deletions app/views/about/index.base.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<%%
content_for :title do 'About' end
%%>
<h1>About GenieACS</h1>

<h2>GenieACS:</h2>

<p>A fast and lightweight TR-069 Auto Configuration Server (ACS)</p>

<p><br>
<b>Version:</b> 1.0.7<br>
<b>License:</b> AGPL-3.0<br>
<br>
<b>Dependencies:</b><br>
<br></p>

<table id="dependencies" class="records">
<tr>
<th>Name</th>
<th>License</th>
</tr>
%s</table>

<h2>GenieACS GUI:</h2>

<p>A GUI front end for GenieACS built with Ruby on Rails</p>

<p><br>
<b>Version:</b> 1.0<br>
<b>License:</b> MIT<br>
<br>
<b>Dependencies:</b><br>
<br></p>

<table id="dependencies" class="records">
<tr>
<th>Name</th>
<th>License</th>
</tr>
%s</table>

<h2>Licenses:</h2>

%s
Loading